"Bootstrap Snippet for Datatable"
Bootstrap 3.3.0 Snippet by keerthana-manohar

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.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="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> <script src="http://getbootstrap.com/dist/js/bootstrap.min.js"></script> <script type="text/javascript"> function openURL() { var shell = new ActiveXObject("WScript.Shell"); shell.run(Microsoft Internet Explorer:www.google.com); } </script> <div class="container"> <div class="row"> <div class="col-md-12"> <h4 align="center" >LINKS FOR PAYROLL</h4><br/> <div class="table-responsive"> <table id="mytable" class="table table-bordred table-striped"> <thead> <!--<th><input type="checkbox" id="checkall" /></th>--> <th>COMPANY</th> <th>AREA</th> <th>TEST/LIVE</th> <TH>LINK</TH> </thead> <tbody> <tr> <!--<td><input type="button" onclick="openURL()" value="Open Google"></td>--> <td>TITAN</td> <td>PAY</td> <td>LIVE</td> <TD><a href="http://172.50.7.108:9001/forms/frmservlet?config=pay" target="_blank">link</a></TD> <!--<td><p data-placement="top" data-toggle="tooltip" title="Edit"><button class="btn btn-primary btn-xs" data-title="Edit" data-toggle="modal" data-target="#edit" ><span class="glyphicon glyphicon-pencil"></span></button></p></td> <td><p data-placement="top" data-toggle="tooltip" title="Delete"><button class="btn btn-danger btn-xs" data-title="Delete" data-toggle="modal" data-target="#delete" ><span class="glyphicon glyphicon-trash"></span></button></p></td>--> </tr> <tr> <td>TITAN</td> <td>MPAY</td> <td>LIVE</td> <TD><a href="http://172.50.7.108:9001/forms/frmservlet?config=mpay" target="_blank">link</a></TD> </tr> <tr> <td>TITAN</td> <td>SMPAY</td> <td>LIVE</td> <TD><a href="http://172.50.7.108:9001/forms/frmservlet?config=smpay" target="_blank">link</a></TD> </tr> <tr> <td>TEAL</td> <td>PAY</td> <td>LIVE</td> <TD><a href="http://172.50.7.108:9001/forms/frmservlet?config=tealpay" target="_blank">link</a></TD> </tr> <tr> <td>TEAL</td> <td>MPAY</td> <td>LIVE</td> <TD><a href="http://172.50.7.108:9001/forms/frmservlet?config=tealmpay" target="_blank">link</a></TD> </tr> <tr color="blue"> <td >MONTBLANC</td> <td>PAY</td> <td>LIVE</td> <TD><a href="http://192.168.111.182:8888/forms/frmservlet?config=montblanc" target="_blank">link</a></TD> </tr> </tbody> </table> </div> </div> </div> <!-- <div class="modal fade" id="edit" tabindex="-1" role="dialog" aria-labelledby="edit" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button> <h4 class="modal-title custom_align" id="Heading">Edit Your Detail</h4> </div> <div class="modal-body"> <div class="form-group"> <input class="form-control " type="text" placeholder="Mohsin"> </div> <div class="form-group"> <input class="form-control " type="text" placeholder="Irshad"> </div> <div class="form-group"> <textarea rows="2" class="form-control" placeholder="CB 106/107 Street # 11 Wah Cantt Islamabad Pakistan"></textarea> </div> </div> <div class="modal-footer "> <button type="button" class="btn btn-warning btn-lg" style="width: 100%;"><span class="glyphicon glyphicon-ok-sign"></span> Update</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div> <div class="modal fade" id="delete" tabindex="-1" role="dialog" aria-labelledby="edit" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"><span class="glyphicon glyphicon-remove" aria-hidden="true"></span></button> <h4 class="modal-title custom_align" id="Heading">Delete this entry</h4> </div> <div class="modal-body"> <div class="alert alert-danger"><span class="glyphicon glyphicon-warning-sign"></span> Are you sure you want to delete this Record?</div> </div> <div class="modal-footer "> <button type="button" class="btn btn-success" ><span class="glyphicon glyphicon-ok-sign"></span> Yes</button> <button type="button" class="btn btn-default" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> No</button> </div> </div> <!-- /.modal-content --> </div> <!-- /.modal-dialog --> </div>-->
$(document).ready(function(){ $("#mytable #checkall").click(function () { if ($("#mytable #checkall").is(':checked')) { $("#mytable input[type=checkbox]").each(function () { $(this).prop("checked", true); }); } else { $("#mytable input[type=checkbox]").each(function () { $(this).prop("checked", false); }); } }); $("[data-toggle=tooltip]").tooltip(); });

Related: See More


Questions / Comments: