我想创建一个应用程序,其中组合框应该看起来像下面的第一张图片。但是,当我使用组合框的列表时,它看起来像第二个图像。列表没有完全显示 - 它正在削减。请建议我使用哪个属性?代码如下:
items: [{
xtype: 'combobox',
fieldLabel: 'Location',
displayField: 'name',
forceSelection: true,
pageSize: 10,
store: 'SalesOrderManager.store.LocationStore',
typeAhead: true,
valueField: 'id',
id: 'LocationComboBox'
}]
应该是什么样的:
我得到的是:
可以在this Fiddle。
中查看完整代码答案 0 :(得分:1)
你在谈论挑选者的宽度吗?我想你想要:
matchFieldWidth: false,
listConfig: {
width: 250
}