Exporting all data from Kendo Grid datasource

后端 未结 3 1085
孤独总比滥情好
孤独总比滥情好 2021-01-01 02:19

I followed that tutorial about exporting Kendo Grid Data : http://www.kendoui.com/blogs/teamblog/posts/13-03-12/exporting_the_kendo_ui_grid_data_to_excel.aspx

Now I´

3条回答
  •  春和景丽
    2021-01-01 02:36

    Really old question but:

    To export all the pages use excel.allPages:

    $("#grid").kendoGrid({
        toolbar: ["excel"],
        excel: {
            allPages: true
        },
        // ....
    });
    

    See Example

提交回复
热议问题