我已經使用這個datatabel示例http://www.paulzepernick.com/ci-zepernick/。 但我不知道要添加編輯和刪除列。如何使用codeignitor添加編輯,刪除數據標籤中的列
$(function() {
//wait till the page is fully loaded before loading table
//dataTableSearch() is optional. It is a jQuery plugin that looks for input fields in the thead to bind to the table searching
$("#sampleOrderTable").dataTable({
processing: true,
serverSide: true,
ajax: {
"url": JS_BASE_URL + "/DatatableControl/dataTable",
"type": "POST"
},
columns: [
{ data: "o.serial_order_id" },
{ data: "o.date" },
{ data: "c.fname" },
{ data: "c.lname" },
{ data: "c.email" },
{ data: "o.payment_type" }
]
}).dataTableSearch(500);
});
這是我的jquery函數。
你想使用jQuery或笨? –
使用codeignitor – archana