我有一个组合框和几个网格。
{
xtype : 'combobox',
fieldLabel : 'Module',
value: 'A' ,
store: ['A', 'B', 'C'],
listeners: {
select: function(){
// code goes here
}
}
}
假设,在选择A时,我想显示grid1并选择B,我想显示grid2等等。我该怎么做?
答案 0 :(得分:1)
试试这个 -
{
xtype : 'combobox',
fieldLabel : 'Module',
value: 'A' ,
store: ['A', 'B', 'C'],
listeners: {
select: function(combo, records, eOpts){
var value = records[0].get('value');
if (value == 'A') {
Ext.getCmp('grid1').show();
Ext.getCmp('grid2').hide();
}
}
}