Ext ComboBox 宽度

今天用Ext 中的 combobox发现如果你将 combobox的宽度设置的太小,可能Ext弹出的下拉框的宽度会超过你的combobox的宽度,其

 

实这个问题只需要在combobox expand的时候设置下拉框的宽度就可以了

 

代码如下:

 

{
  xtype: "combo",
  width: 36,
  listeners: {
     expand: function() {
        this.list.setWidth(this.width);
     }
  }
}


 

 

 

你可能感兴趣的:(function,ext)