%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<p class="text-muted font-13 m-b-30"> DataTables has most features enabled by default, so all you need to do to use it with your own tables is to call the construction function: <code>$().DataTable();</code> </p> <table id="datatable-buttons" class="table table-striped table-bordered"> <thead> <tr> <th class="actions"> <input type="checkbox" id="check-all" class="flat"> </th> <th>ID</th> <th>Name</th> <th>Designation</th> <th>Department</th> <th class="status actions">Status</th> <th class="priority actions">Priority</th> <th class="actions"></th> </tr> </thead> <tbody> <?php foreach($records as $key=>$record){ ?> <tr> <td class="a-center "> <input type="checkbox" class="flat" name="table_records"> </td> <td><?php echo $record['DoctorID'];?></td> <td><?php echo $record['DoctorTitle'].' '.$record['DoctorName'];?></td> <td><?php echo $record['DesignationTitle'];?></td> <td><?php echo $record['DepartmentName'];?></td> <td><?php echo $record['Status'];?> <!-- <select class="form-control select2-single-ns"> <option>Active</option> <option>Inactive</option> </select> --> </td> <td><input type="text" class="form-control" disabled="disabled" value="<?php echo $record['DoctorPriorityOrder'];?>" size="2"></td> <td> <ul class="nav"> <li style="float:left;"><a href="#">Quick Edit</a></li> <li style="float:left;"><a href="#"><i class="fa fa-2x fa-edit"></i></a></li> <li style="float:left;"><a href="#"><i class="fa fa-2x fa-times-circle"></i></a></li> </ul> </td> </tr> <?php }?> </tbody> </table>