将复选框添加到jquery数据表

时间:2012-09-26 07:19:30

标签: jquery datatables

我是JQuery的新手。 谁能告诉我如何将复选框添加到jquery dataTable?

1 个答案:

答案 0 :(得分:22)

我猜你在这里使用jQuery datatables插件:

您可以使用aoColumnDefs参数自定义列,例如 -

aoColumnDefs  : [
{
    aTargets: [0],    // Column number which needs to be modified
    fnRender: function (o, v) {   // o, v contains the object and value for the column
        return '<input type="checkbox" id="someCheckbox" name="someCheckbox" />';
    },
    sClass: 'tableCell'    // Optional - class to be applied to this table cell
}]