【发布时间】:2019-08-20 08:57:15
【问题描述】:
在使用 ajax 绑定来自 db 的数据时,我无法将复选框添加到我的 DataTable。如何添加带有服务器端数据加载的复选框?
我的 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);
?>
我需要在每个 td 的第一列添加一个带有 id 的复选框
【问题讨论】:
-
您的表中没有
id列。是否也应该与复选框一起动态生成?
标签: javascript php jquery ajax datatables