Ext.js组合框 - 列表问题

时间:2012-05-18 09:36:43

标签: extjs extjs4.1

我想创建一个应用程序,其中组合框应该看起来像下面的第一张图片。但是,当我使用组合框的列表时,它看起来像第二个图像。列表没有完全显示 - 它正在削减。请建议我使用哪个属性?代码如下:

items: [{
    xtype: 'combobox',
    fieldLabel: 'Location',
    displayField: 'name',
    forceSelection: true,
    pageSize: 10,
    store: 'SalesOrderManager.store.LocationStore',
    typeAhead: true,
    valueField: 'id',
    id: 'LocationComboBox'
}]

应该是什么样的:

Desired Output

我得到的是:

Current Output

可以在this Fiddle

中查看完整代码

1 个答案:

答案 0 :(得分:1)

你在谈论挑选者的宽度吗?我想你想要:

matchFieldWidth: false,
listConfig: {
    width: 250
}