Tôi đang sử dụng Datatables và tôi có đoạn mã sau để tạo bảng. Tôi muốn hiển thị các hộp kiểm cho các giá trị đọc, ghi, thực hiện và quản trị. Nếu giá trị bằng 1, tôi muốn chọn hộp kiểm. và nếu không chọn hộp kiểm 0.Cách hiển thị hộp kiểm trong jquery.datatables?
javascript
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
var oTable = $('#example').dataTable({
"sScrollY": "500px",
"bPaginate": false,
"bProcessing": true,
"sAjaxSource": "sources/sample.json"
});
});
</script>
HTML
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
<thead>
<tr>
<th width="20%">Browser</th>
<th width="25%">Read</th>
<th width="25%">Write</th>
<th width="15%">Execute</th>
<th width="15%">Admin</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
JSON
{ "aaData": [
["Trident","0","0","0","1"],
["Trident","0","1","0","0"],
["Trident","0","0","1","1"],
["Trident","0","0","1","1"],
["Trident","0","0","1","1"],
["Trident","0","0","0","0"],
["Gecko","1","1","1","1"],
["Gecko","0","0","0","1"],
["Other browsers","1","0","0","U"]
] }
Bạn nghĩ rằng bạn đang tìm cách thêm các điều khiển nội tuyến vào datatable: [datatable inline controls] (http://editor.datatables.net/release/DataTables/extras/Editor/examples/inlineControls.html) .cũng [liên quan ] (http://stackoverflow.com/questions/3444339/jquery-datatables-plugin-adding-a-checkbox-dynamically) – zer0bit