我正在尝试编写一个带有搜索文本字段、搜索按钮和显示结果的网格的通用面板组件。我的目标是一个通用组件,您可以使用更多或更少的列、不同的列标题和不同的搜索逻辑来创建它的不同实例。
我已经使用 Sencha Architect 2 创建了 ExtJS4 代码,其中的内容如下所示:
initComponent: function() {
var me = this;
Ext.applyIf(me, {
items: [
{
xtype: 'textfield',
itemId: 'txtObjSearch',
fieldLabel: 'Search for'
},
{
xtype: 'button',
itemId: 'btnSearch',
icon: '/rhidmoplus/icons/zoom.png',
text: 'Search'
},
{
xtype: 'gridpanel',
itemId: 'gridResultObjects',
title: '',
store: 'testStore',
colspan: 2,
columns: [
{
xtype: 'gridcolumn',
dataIndex: 'MSKEYVALUE',
text: 'ID'
},
{
xtype: 'gridcolumn',
dataIndex: 'DISPLAYNAME',
text: 'Displayname'
}
],
viewConfig: {
itemId: 'gridView'
}
}
]
});
me.callParent(arguments);
},
商店和 2 列只是假人。我想在自定义组件的构造函数中提供真实的存储和真实的列配置。我发现 GridPanel.reconfigure (http://docs.sencha.com/ext-js/4-1/#!/api/Ext.grid.Panel-method-reconfigure) 方法似乎完全符合我的需要。但是,以下代码会产生错误:
////////////////////////
// Prepare store
////////////////////////
// prepare fields and columns
var __fields = [];
var __columns = [];
for (var jj=0; jj<config.columns.length; jj++) {
var item2 = {};
var item = [];
// for fields
item.name = config.columns[jj].title;
__fields.push (item);
// for columns
item2.xtype = 'gridcolumn';
item2.dataIndex = config.columns [jj].dataIndex;
item2.text = config.columns [jj].title;
__columns.push (item2);
}
console.debug ('columns.length = ' + __columns.length + ', fields.length = ' + __fields.length);
var sm = new Ext.selection.RowModel();
//sm.bindComponent (grid.getView ());
var __store = Ext.create ('Ext.data.Store', {
storeId: config.storeId,
fields: __fields,
selModel: sm,
proxy: {
type: 'ajax',
url: '/rhidmo/rest/ktec_js_searchUtils',
reader: {
type: 'json',
root: 'entries'
}
}
});
grid.reconfigure (__store, __columns);
这是:
未捕获的类型错误:无法读取未定义的属性“长度”
在选择模型的 onLastFocusChanged 方法中。如果我将 null 作为 reconfigure 的第一个参数传递,那么这不会发生,但我想动态创建一个存储(否则我的组件的每个实例都使用同一个存储,这肯定不好)。
也许我的商店配置不正确,但我从 Sencha Architect 创建的代码中复制了它,所以它不会错。
感谢您的任何提示。干杯凯
=========================================
你好,现在改了代码:
// prepare fields and columns
var __fields = [];
var __columns = [];
for (var jj=0; jj<config.columns.length; jj++) {
var item2 = Ext.create ('Ext.grid.column.Column', {
dataIndex: config.columns [jj].dataIndex,
text: config.columns [jj].title
});
var item = Ext.create ('Ext.data.Field', {
name: config.columns[jj].title
});
__fields.push (item);
__columns.push (item2);
}
我仍然得到同样的错误:
Uncaught TypeError: Cannot read property 'length' of undefined
Ext.define.onLastFocusChangedext-all-debug.js:89284
Ext.define.setLastFocusedext-all-debug.js:59431
Ext.define.clearSelectionsext-all-debug.js:59543
Ext.define.refreshext-all-debug.js:59523
Ext.define.bindext-all-debug.js:59143
Ext.define.bindStoreext-all-debug.js:60584
Ext.define.bindStoreext-all-debug.js:78007
Ext.define.reconfigureext-all-debug.js:78033
Ext.define.configureGenericSearchPanel.js:141
Ext.define.onStoreTestPanelRenderMainController.js:471
fireext-all-debug.js:10658