Toggle navigation
Bootsnipp
Bootstrap
For
CSS Frameworks
Bootstrap
Foundation
Semantic UI
Materialize
Pure
Bulma
References
CSS Reference
Tools
Community
Page Builder
Form Builder
Button Builder
Icon Search
Dan's Tools
Diff / Merge
Color Picker
Keyword Tool
Web Fonts
.htaccess Generator
Favicon Generator
Site Speed Test
Snippets
Featured
Tags
By Bootstrap Version
4.1.1
4.0.0
3.3.0
3.2.0
3.1.0
3.0.3
3.0.1
3.0.0
2.3.2
Register
Login
"Driver Registration"
Bootstrap 3.1.0 Snippet by
gnaresh
3.1.0
jQuery
registration
Preview
HTML
CSS
JS
View Full Screen
Forked from
Fork
Fork this
Parent
7.3K
 
1 Fav
Post to Facebook
Tweet this
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="stepwizard"> <div class="stepwizard-row setup-panel"> <div class="stepwizard-step"> <a href="#step-1" type="button" class="btn btn-primary btn-circle">1</a> <p>Service Details</p> </div> <div class="stepwizard-step"> <a href="#step-2" type="button" class="btn btn-default btn-circle" disabled="disabled">2</a> <p>Service Enpoint Details</p> </div> <div class="stepwizard-step"> <a href="#step-3" type="button" class="btn btn-default btn-circle" disabled="disabled">3</a> <p>Service Provider</p> </div> <div class="stepwizard-step"> <a href="#step-4" type="button" class="btn btn-default btn-circle" disabled="disabled">4</a> <p>Actions</p> </div> <div class="stepwizard-step"> <a href="#step-5" type="button" class="btn btn-default btn-circle" disabled="disabled">5</a> <p>Email Templates</p> </div> <div class="stepwizard-step"> <a href="#step-6" type="button" class="btn btn-default btn-circle" disabled="disabled">6</a> <p>Preview & Submit</p> </div> </div> </div> <form role="form"> <div class="row setup-content" id="step-1"> <div class="col-xs-12"> <div class="col-md-12"> <h3> Service Details</h3> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="stack_id">Select Stack</label> <div class="col-md-5"> <select id="stack_id" name="stack_id" class="form-control"> <option value="1">Open Source</option> <option value="2">IBM</option> <option value="3">Microsoft</option> <option value="4">Other Services</option> </select> </div> </div> <br> <br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="service_name">Service Name</label> <div class="col-md-5"> <input id="service_name" name="service_name" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="service_architecture">Service Architecture</label> <div class="col-md-5"> <input id="service_architecture" name="service_architecture" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="service_version">Service Version</label> <div class="col-md-5"> <input id="service_version" name="service_version" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <!-- Textarea --> <div class="form-group"> <label class="col-md-4 control-label" for="service_description">Service Description</label> <div class="col-md-4"> <textarea class="form-control" id="service_description" name="service_description"></textarea> </div> </div> <br> <br> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="os_id">Operating System</label> <div class="col-md-5"> <select id="os_id" name="os_id" class="form-control"> <option value="1">Ubuntu</option> <option value="2">RHEL</option> <option value="3">Windows</option> </select> </div> </div> <br><br> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="sl_id">Software License</label> <div class="col-md-5"> <select id="sl_id" name="sl_id" class="form-control"> <option value="1">Licence 1</option> <option value="2">Licence 2</option> <option value="3">Licence 3</option> </select> </div> </div> <br><br> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="sc_id">Service Category</label> <div class="col-md-5"> <select id="sc_id" name="sc_id" class="form-control"> <option value="1">Category 1</option> <option value="2">Category 2</option> <option value="3">Category 3</option> </select> </div> </div> <button class="btn btn-primary nextBtn btn-lg pull-right" type="button" >Next</button> </div> </div> </div> <div class="row setup-content" id="step-2"> <div class="col-xs-12"> <div class="col-md-12"> <h3> Service Enpoint Details</h3> <!-- File Button --> <div class="form-group"> <label class="col-md-4 control-label" for="sep_json">SEP JSON File</label> <div class="col-md-4"> <input type="file" id="sep_json" name="sep_json" class="input-file" accept=".txt,.json"> <div id="sep_jsondisplay"></div> </div> </div> <br><br> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="possible_instances">Possible Instances</label> <div class="col-md-5"> <select id="possible_instances" name="possible_instances" class="form-control"> <option value="0">0</option> <option value="-1">Infinite</option> <option value=">0">1 or more</option> </select> </div> </div> <br><br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="doc_url">Documentation File Location</label> <div class="col-md-5"> <input id="doc_url" name="doc_url" type="text" placeholder="docs/filename.html" class="form-control input-md"> </div> </div> <button class="btn btn-primary nextBtn btn-lg pull-right" type="button" >Next</button> </div> </div> </div> <div class="row setup-content" id="step-3"> <div class="col-xs-12"> <div class="col-md-12"> <h3> Service Provider</h3> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="sd_modulepath">SD ModulePath</label> <div class="col-md-5"> <input id="sd_modulepath" name="sd_modulepath" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="sd_filename">SD File Name</label> <div class="col-md-5"> <input id="sd_filename" name="sd_filename" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <button class="btn btn-primary nextBtn btn-lg pull-right" type="button" >Next</button> </div> </div> </div> <div class="row setup-content" id="step-4"> <div class="col-xs-12"> <div class="col-md-12" > <h3> Actions</h3> <div id="field"> <div id="field0"> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="action_id">Action Id</label> <div class="col-md-5"> <input id="action_id" name="action_id" type="text" placeholder="" class="form-control input-md"> </div> </div> <br><br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="action_name">Action Name</label> <div class="col-md-5"> <input id="action_name" name="action_name" type="text" placeholder="" class="form-control input-md"> </div> </div> <br><br> <!-- File Button --> <div class="form-group"> <label class="col-md-4 control-label" for="action_json">Action JSON File</label> <div class="col-md-4"> <input type="file" id="action_json" name="action_json" class="input-file" accept=".txt,.json"> <div id="action_jsondisplay"></div> </div> </div> </div> </div> <!-- Button --> <div class="form-group"> <div class="col-md-4"> <button id="add-more" name="add-more" class="btn btn-primary">Add More</button> </div> </div> <br><br> <button class="btn btn-primary nextBtn btn-lg pull-right" type="button" >Next</button> </div> </div> </div> <div class="row setup-content" id="step-5"> <div class="col-xs-12"> <div class="col-md-12"> <h3> Email Templates</h3> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="emailType">Email Type</label> <div class="col-md-5"> <input id="emailType" name="emailType" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="description">Description</label> <div class="col-md-5"> <input id="description" name="description" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="subject">Subject</label> <div class="col-md-5"> <input id="subject" name="subject" type="text" placeholder="" class="form-control input-md"> </div> </div> <br> <br> <!-- Textarea --> <div class="form-group"> <label class="col-md-4 control-label" for="body">Body</label> <div class="col-md-4"> <textarea class="form-control" id="body" name="body"></textarea> </div> </div> <button class="btn btn-primary nextBtn btn-lg pull-right" type="button" >Next</button> </div> </div> </div> <div class="row setup-content" id="step-6"> <div class="col-xs-12"> <div class="col-md-12"> <h3> Preview & Submit</h3> <button class="btn btn-success btn-lg pull-right" type="submit">Submit</button> </div> </div> </div> </form> </div>
body{ margin-top:40px; } .stepwizard-step p { margin-top: 10px; } .stepwizard-row { display: table-row; } .stepwizard { display: table; width: 100%; position: relative; } .stepwizard-step button[disabled] { opacity: 1 !important; filter: alpha(opacity=100) !important; } .stepwizard-row:before { top: 14px; bottom: 0; position: absolute; content: " "; width: 100%; height: 1px; background-color: #ccc; z-order: 0; } .stepwizard-step { display: table-cell; text-align: center; position: relative; } .btn-circle { width: 30px; height: 30px; text-align: center; padding: 6px 0; font-size: 12px; line-height: 1.428571429; border-radius: 15px; }
$(document).ready(function () { var navListItems = $('div.setup-panel div a'), allWells = $('.setup-content'), allNextBtn = $('.nextBtn'); allWells.hide(); navListItems.click(function (e) { e.preventDefault(); var $target = $($(this).attr('href')), $item = $(this); if (!$item.hasClass('disabled')) { navListItems.removeClass('btn-primary').addClass('btn-default'); $item.addClass('btn-primary'); allWells.hide(); $target.show(); $target.find('input:eq(0)').focus(); } }); allNextBtn.click(function(){ var curStep = $(this).closest(".setup-content"), curStepBtn = curStep.attr("id"), nextStepWizard = $('div.setup-panel div a[href="#' + curStepBtn + '"]').parent().next().children("a"), curInputs = curStep.find("input[type='text'],input[type='url']"), isValid = true; $(".form-group").removeClass("has-error"); for(var i=0; i<curInputs.length; i++){ if (!curInputs[i].validity.valid){ isValid = false; $(curInputs[i]).closest(".form-group").addClass("has-error"); } } if (isValid) nextStepWizard.removeAttr('disabled').trigger('click'); }); $('div.setup-panel div a.btn-primary').trigger('click'); //custom code by @naresh for file input sep var fileInput = document.getElementById('sep_json'); var fileDisplayArea = document.getElementById('sep_jsondisplay'); var fileInput1 = document.getElementById('action_json'); var fileDisplayArea1 = document.getElementById('action_jsondisplay'); fileInput.addEventListener('change', function(e) { var file = fileInput.files[0]; var textType = /text.*/; if (file.type.match(textType)) { var reader = new FileReader(); reader.onload = function(e) { var res= reader.result; function isJSON (something) { if (typeof something != 'string') something = JSON.stringify(something); try { JSON.parse(something); return true; } catch (e) { return false; } } if(isJSON(res)){ fileDisplayArea.innerText = JSON.stringify(res); }else{ fileDisplayArea.innerText = "File content is not JSON" } } reader.readAsText(file); } else { fileDisplayArea.innerText = "File not supported!" } }); fileInput1.addEventListener('change', function(e) { var file = fileInput1.files[0]; var textType = /text.*/; if (file.type.match(textType)) { var reader = new FileReader(); reader.onload = function(e) { var res= reader.result; function isJSON (something) { if (typeof something != 'string') something = JSON.stringify(something); try { JSON.parse(something); return true; } catch (e) { return false; } } if(isJSON(res)){ fileDisplayArea1.innerText = JSON.stringify(res); }else{ fileDisplayArea1.innerText = "File content is not JSON" } } reader.readAsText(file); } else { fileDisplayArea1.innerText = "File not supported!" } }); //@naresh action dynamic childs var next = 0; $("#add-more").click(function(e){ e.preventDefault(); var addto = "#field" + next; var addRemove = "#field" + (next); next = next + 1; var newIn = ' <div id="field'+ next +'" name="field'+ next +'"><!-- Text input--><div class="form-group"> <label class="col-md-4 control-label" for="action_id">Action Id</label> <div class="col-md-5"> <input id="action_id" name="action_id" type="text" placeholder="" class="form-control input-md"> </div></div><br><br><!-- Text input--><div class="form-group"> <label class="col-md-4 control-label" for="action_name">Action Name</label> <div class="col-md-5"> <input id="action_name" name="action_name" type="text" placeholder="" class="form-control input-md"> </div></div><br><br><!-- File Button --> <div class="form-group"> <label class="col-md-4 control-label" for="action_json">Action JSON File</label> <div class="col-md-4"> <input id="action_json" name="action_json" class="input-file" type="file"> </div></div></div>'; var newInput = $(newIn); var removeBtn = '<button id="remove' + (next - 1) + '" class="btn btn-danger remove-me" >Remove</button></div></div><div id="field">'; var removeButton = $(removeBtn); $(addto).after(newInput); $(addRemove).after(removeButton); $("#field" + next).attr('data-source',$(addto).attr('data-source')); $("#count").val(next); $('.remove-me').click(function(e){ e.preventDefault(); var fieldNum = this.id.charAt(this.id.length-1); var fieldID = "#field" + fieldNum; $(this).remove(); $(fieldID).remove(); }); }); });
Questions / Comments:
Post
Posting Guidelines
Formatting
- Now
×
Close
Donate
BTC: 12JxYMYi6Vt3mx3hcmP3B2oyFiCSF3FhYT
ETH: 0xCD715b2E3549c54A40e6ecAaFeB82138148a6c76