我必须使用两个组合框,第一个组合框选择类别,第二个组合框在第一个组合框中设置的类别中进行搜索。我想将它们打包在一起成为一个新组件(拥有自己的 xtype 等)。我该怎么做?
问问题
110 次
2 回答
0
Ext.define('DoubleCombo', {
extend: 'Ext.Panel', // or Ext.Component e.t.c
alias: 'widget.doubleCombo',
items: [{
xtype: 'combobox',
...
},{
xtype: 'combobox',
...
}]
});
你可以使用 xtype: 'doubleCombo'。有关组件,请参阅本指南:http ://docs.sencha.com/ext-js/4-1/#!/guide/components
于 2013-02-20T19:42:58.530 回答
0
Ext.define('MyApp.view.MyContainer', {
extend: 'Ext.container.Container',
alias:'widget.myxtype',
initComponent: function() {
var me = this;
Ext.applyIf(me, {
items: [
{
xtype: 'combobox',
fieldLabel: 'Label'
},
{
xtype: 'combobox',
fieldLabel: 'Label'
}
]
});
me.callParent(arguments);
}
});
于 2013-02-20T19:43:06.963 回答