正如标题所说,有没有办法在编辑网格时更改更新和取消按钮的文本(或语言)?
谢谢,
编辑:
我已经更改了RowEditor.js中的文本
saveBtnText: 'Update',
到
saveBtnText: 'Example',
但不起作用
答案 0 :(得分:1)
您可以像这样覆盖Ext.grid.RowEditor
类:
Ext.define(null, {
override: 'Ext.grid.RowEditor',
saveBtnText: 'Salveaza',
cancelBtnText: 'Anuleaza'
});
这是工作小提琴:https://fiddle.sencha.com/#view/editor&fiddle/27uj。
假设您要本地化您的整个应用程序,您应该从sencha的this guide处取一个looke。基本上,您只需要ext-locale
app.json
包
"requires": [
"ext-locale"
]
在此之后,您应该将locale
param(也在app.json
中)设置为所需的语言:
"locale": "es"
这样做,您将获得所有ExtJS组件的本地化。