对象显示默认是走 ext-.all.js 的英文 ,想要实现多语言就要操作 locale 文件夹里的js 文件,下面以变换成中中文为例 记录 操作步骤
页面上要引用 ext-lang-zh_CN.js 光是这个操作是不够的,有的对象还实现不了中文化,因为CN.js中提供的不全,接下来就需要查看 ext-all.js 对象
Ext.cmd.derive("Ext.grid.RowEditor"
saveBtnText:"Update",
cancelBtnText:"Cancel",
errorsText:"Errors"}
并找到要实现中文化的对象 Ext.grid.RowEditor 对象记下改对象的格式, 在CN.js中
Ext.define("Ext.locale.zh_CN.grid.RowEditor", {
override: "Ext.grid.RowEditor",
saveBtnText: "更新",
cancelBtnText: "取消",
errorsText:"错误"
});
阅读(4350) | 评论(0) | 转发(0) |