如何更改所有网格的Excel工具栏的名称? 我试试这个,但它不起作用!
kendo.ui.Grid.prototype.options.messages =
$.extend(true, kendo.ui.Grid.prototype.options.messages, {
name: "excel page example."
});
答案 0 :(得分:0)
这样的东西?
$("#grid").kendoGrid({
toolbar: [{name:'excel',text:'custom excel export button'}],
excel: {
allPages: true
},
.
.
.
});