0

我正在使用getCmp('componentid').hide(); 它不起作用。

if (flag_in == 1) {
    console.log('inside if of hide'); 
    Ext.getCmp('inboxQueueId').hide();                                    

    var el = btn.el;  
    Ext.getCmp('inbox_hide').setIconCls('show');                              
    flag_in = 0;
    Ext.getCmp('queueViewPanel').setWidth('100%');

} else {
      console.log('inside else of hide'); 
   Ext.getCmp('inboxQueueId').show();                               

  var element = btn.element;
  Ext.getCmp('inbox_hide').setIconCls('hide');

 flag_in = 1;
 Ext.getCmp('queueViewPanel').setWidth('70%');
 }

如果但Ext.getCmp('inboxQueueId').hide()不起作用,它会进入内部。而且它没有给出错误。请帮我。

4

1 回答 1

2

试试这个,

Ext.getCmp('inboxQueueId').hide('slide', false)

或者类似的东西,

Ext.getCmp('inboxQueueId').hide(false)

我希望这有帮助。:)

于 2012-06-12T10:29:42.220 回答