gpt4 book ai didi

javascript - 无法更改工具栏上 Kendo 导出到 Excel 按钮的标题

转载 作者:行者123 更新时间:2023-11-29 16:08:56 25 4
gpt4 key购买 nike

我想更改 Kendo Grid 工具栏上“导出到 Excel”按钮的标题,但尽管我尝试应用许多不同的建议,但仍然无法更新。如何更改?

<script>
var grid = $("#grid").kendoGrid({
toolbar: ["excel"],
excel: {
text: "Test 1", //did not make any sense
title: "Test 2", //did not make any sense
fileName: "Export.xlsx",
filterable: true
},
//code omitted for brevity

}).data("kendoGrid");
</script>

最佳答案

除了在 toolbar: [...] 中传递一个字符串之外,您还可以传递一个具有正确属性的对象来调整文本。

改变:

toolbar: ["excel"];

toolbar: [{name: 'excel', text: 'custom excel export button'}];

完整示例:

<script>
var grid = $("#grid").kendoGrid({
toolbar: [{name:'excel',text:'custom excel export button'}],
excel: {
fileName: "Export.xlsx",
filterable: true
},
}).data("kendoGrid");
</script>

关于javascript - 无法更改工具栏上 Kendo 导出到 Excel 按钮的标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34015387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com