0

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

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

它应该是什么样子:

期望的输出

我得到的是:

电流输出

完整的代码可以在这个 Fiddle中查看。

4

1 回答 1

1

您是在谈论选择器宽度吗?我想你想要:

matchFieldWidth: false,
listConfig: {
    width: 250
}
于 2012-05-18T22:41:28.087 回答