如何在meteor app中使用ephemer:reactive-datatables包添加用于编辑/删除的列

时间:2015-02-07 06:31:23

标签: meteor

我正在使用ephemer:我的流星应用中的反应数据表进行搜索,排序和放大分页。我想做编辑&删除数据的功能,那么如何添加列进行编辑和放大删除记录和我将如何将id传递给这些添加/编辑链接。

1 个答案:

答案 0 :(得分:0)

read the original documentation那里有很多例子。以下是如何为新建,编辑,删除记录创建操作工具栏。

$('#example').DataTable( {
    dom: "Tfrtip",
    ajax: "../php/staff.php",
    columns: [
        { data: null, render: function ( data, type, row ) {
            // Combine the first and last names into a single table field
            return data.first_name+' '+data.last_name;
        } },
        { data: "position" },
        { data: "office" },
        { data: "extn" },
        { data: "start_date" },
        { data: "salary", render: $.fn.dataTable.render.number( ',', '.', 0, '$' ) }
    ],
    tableTools: {
        sRowSelect: "os",
        aButtons: [
            { sExtends: "editor_create", editor: editor },
            { sExtends: "editor_edit",   editor: editor },
            { sExtends: "editor_remove", editor: editor }
        ]
    }
} );