gpt4 book ai didi

constructor - ExtJS4:如何将参数传递给 initComponent

转载 作者:行者123 更新时间:2023-12-04 17:02:48 25 4
gpt4 key购买 nike

我正在使用 Sencha Architect 2。我正在尝试使用文本搜索和显示结果的表格生成通用 UI 元素。通用意味着我想将它用于几种不同类型的搜索,例如对于用户,角色或其他内容。

所以我在这个关于 Sencha Architect 2 的上下文中绝对喜欢的是它总是生成类。这是我生成的类:

Ext.define('ktecapp.view.ObjSearchPanel', {
extend: 'Ext.container.Container',
alias: 'widget.objsearchpanel',

height: 250,
id: 'UserSearchPanel',
itemId: 'UserSearchPanel',
width: 438,
layout: {
columns: 3,
type: 'table'
},

initComponent: function() {
var me = this;

Ext.applyIf(me, {
items: [
{
xtype: 'textfield',
itemId: 'txtSearchText',
fieldLabel: 'Search Text',
colspan: 2
},
{
xtype: 'button',
id: 'searchObj',
itemId: 'searchObj',
text: 'Search',
colspan: 1
},
{
xtype: 'gridpanel',
height: 209,
itemId: 'resultGrid',
width: 430,
store: 'UserDisplayStore',
colspan: 3,
columns: [
{
xtype: 'gridcolumn',
width: 60,
dataIndex: 'ID',
text: 'ID'
},
{
xtype: 'gridcolumn',
width: 186,
dataIndex: 'DISPLAYNAME',
text: 'Displayname'
},
{
xtype: 'gridcolumn',
width: 123,
dataIndex: 'JOBTITLE',
text: 'Job Title'
},
{
xtype: 'actioncolumn',
width: 35,
icon: 'icons/zoom.png',
items: [
{
icon: 'icons/zoom.png',
tooltip: 'Tooltip'
}
]
}
],
viewConfig: {

},
selModel: Ext.create('Ext.selection.CheckboxModel', {

})
}
]
});
me.callParent(arguments);
}
});

我遇到的问题是一切都需要非常可定制,列的数据索引,商店,......
那么我怎样才能得到一个像 ObjSearchPanel 类的函数的构造函数,我可以在其中传递所有这些信息?在上面的代码中,这看起来几乎是硬编码的......

提前致谢

最佳答案

使用配置,

http://docs.sencha.com/ext-js/4-0/#!/api/Ext.Class-cfg-config

Ext.define('SmartPhone', {
config: {
hasTouchScreen: false,
operatingSystem: 'Other',
price: 500
},
constructor: function(cfg) {
this.initConfig(cfg);
}
});

var iPhone = new SmartPhone({
hasTouchScreen: true,
operatingSystem: 'iOS'
});

iPhone.getPrice(); // 500;
iPhone.getOperatingSystem(); // 'iOS'
iPhone.getHasTouchScreen(); // true;
iPhone.hasTouchScreen(); // true

关于constructor - ExtJS4:如何将参数传递给 initComponent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10410919/

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