DataTable - 禁用分页v2

时间:2015-08-10 12:32:01

标签: jquery datatable

我需要做以下事情:

    var tbLoc = $("#example").DataTable();
    $("#example").on( 'page.dt', function () 
    {
        if ($("#txtField7").length){ //is add or edit row
            alert("You must finish operation new/edit. The pagination is not posible");     
            //when i press the buttons navigation, if this condition is met, I must stay on the same page, what can i do it?
            tbLoc.page(page.info()); //it works ok, but when cancel editing, pagination not work
        }
    });

使用tbLoc.page(page.info());我停留在同一页面上,是我想要的,但它不是很完美,而且,当执行指令时(tbLoc.page(page.info());),分页按钮无法正常工作。

有什么问题?

谢谢,

1 个答案:

答案 0 :(得分:0)

如果要禁用分页

,则数据表中有默认选项
 var tbLoc = $("#example").DataTable({
   paging: false // this will disable pagination
  });