Codeigniter + Datatable自定义编辑/删除记录

时间:2015-03-10 11:02:29

标签: php jquery codeigniter datatables

编辑:

我想为数据表中的记录创建自定义编辑/删除功能。

在数据表代码中我有:

$('#users tbody').on( 'click', 'tr', function () {
     // get the row id here and send it to button 

} );

当用户选择一行时,我想获取行ID并将其发送到按钮:

<a href="<?php echo site_url('main/delete/$id')?>" data-toggle="modal" data-target="#deleteModel" role="button" class="btn-u btn-block">Delete</a>

$ id(来自按钮链接)=用户选择的行的ID。

1 个答案:

答案 0 :(得分:1)

要删除,可在此处找到答案:

Codeigniter + dataTable custom delete with bootstrap model

并且对于编辑,只需在模型中添加一个链接。