如何更改所有网格的Excel工具栏的名称?

时间:2017-10-25 12:33:54

标签: html kendo-ui localization kendo-grid

如何更改所有网格的Excel工具栏的名称? 我试试这个,但它不起作用!

kendo.ui.Grid.prototype.options.messages =
$.extend(true, kendo.ui.Grid.prototype.options.messages, {
  name: "excel page example."
});

enter image description here

1 个答案:

答案 0 :(得分:0)

这样的东西?

  $("#grid").kendoGrid({
      toolbar: [{name:'excel',text:'custom excel export button'}],
      excel: {
          allPages: true
      },
      .
      .
      .

  });