这是我的jQuery文件..我想删除分页,并希望显示页面中的每个记录

时间:2014-07-30 05:25:49

标签: jquery jquery-datatables

我的jQuery文件。如何编辑它以删除分页? .................................................. ..............

$('#sample_2').dataTable({
                // "aLengthMenu": [
                //     [5, 15, 20, -1],
                //     [5, 15, 20, "All"] // change per page values here
                // ],
                // set the initial value
                // "iDisplayLength": 5,
                //"sPaginationType": "bootstrap",
                "oLanguage": {
                   // "sLengthMenu": "_MENU_ per page",
                   "bPaginate": false,
                    "oPaginate": false,
                     "paging":   false,
                    "ordering": false,
                    "info":     false
                },
                "aoColumnDefs": [{
                        'bSortable': false,
                        'aTargets': [0]
                    }
                ]
            });

            jQuery('#sample_2 .group-checkable').change(function () {
                var set = jQuery(this).attr("data-set");
                var checked = jQuery(this).is(":checked");
                jQuery(set).each(function () {
                    if (checked) {
                        $(this).attr("checked", true);
                    } else {
                        $(this).attr("checked", false);
                    }
                });
                jQuery.uniform.update(set);
            });

            jQuery('#sample_2_wrapper .dataTables_filter input').addClass("form-control input-small"); // modify table search input
            //jQuery('#sample_2_wrapper .dataTables_length select').addClass("form-control input-xsmall"); // modify table per page dropdown
           // jQuery('#sample_2_wrapper .dataTables_length select').select2(); // initialize select2 dropdown

............................................... ........................................

1 个答案:

答案 0 :(得分:1)

您正在使用jQuery数据表,以禁用您需要使用的分页

"bPaginate": false。所以就这样做

$('#sample_2').dataTable({
               "bPaginate": false,
});

您已将其包含在"oLanguage"内代码中的错误位置。

See the documentation