我设计了一个基于MVC模式的应用程序。所以我还在我的模型中定义了代理,字段和验证器。例如,这是一个国家列表的模型:
模型
Ext.define('LT.model.Country',{
extend: 'Ext.data.Model',
fields: [{name: 'id',type: 'int'},
{name: 'name', type: 'string'},
],
validations: [
{type: 'length', field: 'name', min: 2}
],
proxy: {
type: 'rest',
url: '/country',
reader: {
type: 'json'
},
writer: {
type: 'json'
}
}
});
以下是使用此模型的商店:
商品
Ext.define('LT.store.Country', {
extend: 'LT.base.store.Base',
model: 'LT.model.Country'
});
商店显示在网格面板中,我使用 RowEditor插件启用直接在网格视图中添加和编辑行
网格面板:
Ext.define('LT.view.country.List' ,{
extend: 'Ext.grid.Panel',
alias : 'widget.country-list',
plugins: [
Ext.create('Ext.grid.plugin.RowEditing', {
clicksToEdit: 2,
clicksToMoveEditor: 1
})
],
store : 'Country',
columns: [
{header: 'ID', dataIndex: 'id', width: 50},
{header: 'Name', dataIndex: 'name', flex: 3, editor: 'textfield'},
],
tbar: [{
xtype: 'button',
action: 'add',
text: 'Add'
},{
xtype: 'button',
action: 'delete',
text: 'Delete'
}]
});
我的问题现在是,如果您在网格视图中编辑数据,则验证错误未显示。如果数据与验证标准不匹配,那么它不会提交给代理(这很好),但用户也没有收到错误消息,插入的数据是无效。
我找到了一些(不是很漂亮)的解决方法 - 但也许有人知道另一种解决方案,可以在extjs中添加验证功能吗?
提前致谢&干杯, 迈克尔
答案 0 :(得分:2)