"Routine2"
Bootstrap 3.2.0 Snippet by utmgeopd

<link href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.2.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 ----------> <script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script> <div class="container"> <div class="row clearfix"> <div class="col-md-12 table-responsive"> <table border="1" cellspacing="0" cellpadding="0"class="table table-bordered table-hover table-sortable" id="tab_logic"> <thead> <tr> <th class="text-center"> Period </th> <th class="text-center"> Sunday </th> <th class="text-center"> Monday </th> <th class="text-center"> Tuesday </th> <th class="text-center"> Wednesday </th> <th class="text-center"> Thursday </th> <th class="text-center"> Friday </th> <th class="text-center"> Saturday </th> <th class="text-center"> Notice </th> </tr> </thead> <tbody> <tr> <td>1</td> <td > <input type="text" placeholder='Subject' class="form-control"/> <input type="text" placeholder='Teacher' class="form-control"/> </td> <td > <input type="text" placeholder='Subject' class="form-control"/> <input type="text" placeholder='Teacher' class="form-control"/> </td> <td > <input type="text" placeholder='Subject' class="form-control"/> <input type="text" placeholder='Teacher' class="form-control"/> </td> <td > <input type="text" placeholder='Subject' class="form-control"/> <input type="text" placeholder='Teacher' class="form-control"/> </td> <td > <input type="text" placeholder='Subject' class="form-control"/> <input type="text" placeholder='Teacher' class="form-control"/> </td> <td > <input type="text" placeholder='Subject' class="form-control"/> <input type="text" placeholder='Teacher' class="form-control"/> </td> <td > <input type="text" placeholder='Subject' class="form-control"/> <input type="text" placeholder='Teacher' class="form-control"/> </td> <td> <textarea name="Notice" id="Notice" class="form-control"></textarea> </td> <td data-name="del"> <button nam"del0" class='btn btn-danger glyphicon glyphicon-remove row-remove'></button> </td> </tr> </tbody> </table> </div> </div> <a id="add_row" class="btn btn-default pull-right">Add Row</a> </div>
.table-sortable tbody tr { cursor: move; }
$(document).ready(function() { $("#add_row").on("click", function() { // Dynamic Rows Code // Get max row id and set new id var newid = 0; $.each($("#tab_logic tr"), function() { if (parseInt($(this).data("id")) > newid) { newid = parseInt($(this).data("id")); } }); newid++; var tr = $("<tr></tr>", { id: "addr"+newid, "data-id": newid }); // loop through each td and create new elements with name of newid $.each($("#tab_logic tbody tr:nth(0) td"), function() { var cur_td = $(this); var children = cur_td.children(); // add new td and element if it has a nane if ($(this).data("name") != undefined) { var td = $("<td></td>", { "data-name": $(cur_td).data("name") }); var c = $(cur_td).find($(children[0]).prop('tagName')).clone().val(""); c.attr("name", $(cur_td).data("name") + newid); c.appendTo($(td)); td.appendTo($(tr)); } else { var td = $("<td></td>", { 'text': $('#tab_logic tr').length }).appendTo($(tr)); } }); // add delete button and td /* $("<td></td>").append( $("<button class='btn btn-danger glyphicon glyphicon-remove row-remove'></button>") .click(function() { $(this).closest("tr").remove(); }) ).appendTo($(tr)); */ // add the new row $(tr).appendTo($('#tab_logic')); $(tr).find("td button.row-remove").on("click", function() { $(this).closest("tr").remove(); }); }); // Sortable Code var fixHelperModified = function(e, tr) { var $originals = tr.children(); var $helper = tr.clone(); $helper.children().each(function(index) { $(this).width($originals.eq(index).width()) }); return $helper; }; $(".table-sortable tbody").sortable({ helper: fixHelperModified }).disableSelection(); $(".table-sortable thead").disableSelection(); $("#add_row").trigger("click"); });

Related: See More


Questions / Comments: