I can't add checkbox to my DataTable while bind data from db using ajax. How can I add a checkbox with server-side data loading?
My jQuery:
var table = $('#example').DataTable({
"ajax": "getBusperOrder.php",
"bPaginate": true,
"retrieve": true,
"bProcessing": true,
"pageLength": 10,
"columns": [{
mData: 'district'
}, {
mData: 'deponame'
}, {
mData: 'busname'
}, {
mData: 'bonnetnumber'
}, {
mData: 'routename'
}, {
mData: 'bustype'
}, {
mData: 'status'
}
],
});
HTML:
<table id="example">
<thead>
<tr>
<th>District</th>
<th>Depo Name</th>
<th>Bus Number</th>
<th>Bonnet Number</th>
<th>Route Name</th>
<th>Bus Type</th>
<th>Action</th>
</tr>
</thead>
</table>
gerBusperOrder.php
<?php
require('database/db.php');
$sql = "select * from bus as B left join depo as D on B.depoid=D.depoid left join district as DS on D.district=DS.id left join bustype as BS on B.bustypeid=BS.bustypeid left join route as R on B.routeid=R.routeid LEFT JOIN bustype as BT on B.bustypeid=BT.bustypeid WHERE B.busid IN(SELECT busid from bus where busid NOT IN (SELECT DISTINCT(bus_id) from advt_book_side AS ABS INNER JOIN booking as B on ABS.booking_number=B.bookingnumber WHERE B.todate>CURDATE() GROUP BY bus_id HAVING COUNT(sides_id)=4))";
$resultset = mysqli_query($db, $sql) or die("database error:" . mysqli_error($db));
$data = array();
while ($rows = mysqli_fetch_assoc($resultset)) {
$data[] = $rows;
}
$results = array(
"sEcho" => 1,
"iTotalRecords" => count($data),
"iTotalDisplayRecords" => count($data),
"aaData" => $data
);
echo json_encode($results);
?>
I need to add a checkbox on the first column of each td with id
idcolumn in your table. Should that also be generated dynamically along with checkbox?