天天看点

ext combobox 数据宽度问题(转)

  1. 模仿地址:https://blog.csdn.net/fengoh/article/details/34860613
  2. 设置的matchFieldWidth=false会随着数据长度改变宽度,数据如果很短会导致列表显示不完整,很长则会超长;设置的matchFieldWidth=true则固定于文本框一样长,如果文本框不够长,则限制了下拉列表无法全部展现。
  3. 关键代码:

    {

    xtype : 'combobox',

    width : 260,

    fieldLabel : '<label style="color:red">*</label>特征类型',

    labelAlign : 'right',

    id:'productFeatureTypeId',//定义上下文查找ID

    name : 'productFeatureTypeId',//表单提交ID

    hiddenName:'productFeatureTypeId',

    displayField : 'description',

    store : 'feature.combobox.ParentTypeStore',

    allowBlank: false,

    matchFieldWidth: false,

    forceSelection: true,

    minChars: 1,

    pageSize: 10,

    queryMode: 'local',

    ypeAhead: true,

    valueField : 'productFeatureTypeId', 

    selectFlag:true,//很关键,由于文本数据改变事件执行的优先级别比较高,需要根据一个标记来判断是否需要输入数据

  4. }
EXT