collection

起始版本号: Buttons 1.0.0

一个按钮触发另一组的下拉按钮

注意:这个需要使用Bottons扩展

说明(Description)

当你有很多按钮时,使用这个会很方便,把按钮进行分类,比如新增、修改、删除分组为操作, 这样不会使表格看起来太复杂,按钮太多

选项(Options)

这个按钮有以下选项配置:

示例

Datatables初始化:创建一个导出集合的按钮

$('#myTable').DataTable( {
    buttons: [
        {
            extend: 'collection',
            text: 'Export',
            buttons: [ 'csv-flash', 'xls-flash', 'pdf-flash' ]
        }
    ]
} );

直接初始化:自定义的按钮集合

new $.fn.dataTable.Buttons( table, {
    buttons: [
        {
            extend: 'collection',
            text: 'Flag',
            buttons: [
                { text: 'High priority',   action: function () { ... } },
                { text: 'Medium priority', action: function () { ... } },
                { text: 'Low priority',    action: function () { ... } }
            ],
            fade: true
        }
    ]
} );

http://datatables.net/reference/button/collection

Translation from DataTables.net, with permission