Cascading Combobox in extjs

后端 未结 3 426
轮回少年
轮回少年 2021-01-16 03:51

I want to do cascading combobox in extjs. I have to comboboxes

Course combobox

{ 
    xtype : \'combobox\',  
    emptyText : \'         


        
3条回答
  •  情书的邮戳
    2021-01-16 04:11

    Is it showing a LoadMask the second time you load it?

    Use this to override that behaviour:

    Ext.override(Ext.LoadMask, {
        onHide: function() {
        this.callParent();
      }
    });
    

提交回复
热议问题