有没有办法将ExtJS(版本4)ComboBox下拉菜单的宽度设置为比实际输入框的宽度宽?
我有一个组合框,我想大约是200px,但我在结果下拉列表上有页面,这个宽度甚至不足以显示所有页面栏的控件。
这是我创建组合的代码:
var add_combo = Ext.create('Ext.form.field.ComboBox',
{
id : 'gbl_add_combo',
store : Ext.create('Ext.data.Store',
{
remoteFilter : true,
fields : ['gb_id', 'title'],
proxy :
{
type : 'ajax',
url : 'index.php/store/get_items',
reader :
{
type : 'json',
root : 'records',
totalProperty : 'total',
successProperty : 'success'
},
actionMethods :
{
read : 'POST',
create : 'POST',
update : 'POST',
destroy : 'POST'
}
}
}),
listConfig:
{
loadingText: 'Searching...',
emptyText: 'No results found'
},
queryMode : 'remote',
hideLabel : true,
displayField : 'title',
valueField : 'gb_id',
typeAhead : true,
hideTrigger : true,
emptyText : 'Start typing...',
selectOnFocus : true,
width : 225,
minChars : 3,
cls : 'header_combo',
pageSize : 15
});
这有两部分。首先,您需要在组合框配置中设置matchFieldWidth:false。然后,您可以在listConfig部分中指定width属性来设置下拉菜单的样式,同时在主配置中指定组合框本身的宽度。
这与以前的版本不同,前者只允许您指定listWidth属性。
我没有找到动态更改"matchFieldWidth"属性的方法。所以我找到了另一个解决方案:
{
xtype: 'combobox',
fieldLabel: 'Short Options',
queryMode: 'local',
store: ['Yes', 'No', 'Maybe'],
matchFieldWidth: false,
listConfig: {
listeners: {
beforeshow: function(picker) {
picker.minWidth = picker.up('combobox').getSize().width;
}
}
}
}
来源:http://www.sencha.com/forum/showthread.php?293120-设置-BoundList-minWidth-to-the-with-of-aparent-ComboBox-without-matchFieldWidth
在ExtJS 7+modern中,如果您希望控制组合框选择器的宽度,则需要使用beforepickercreate事件。
这不是很直观,但它是有效的。
xtype: 'combobox',
...
listeners: {
beforepickercreate: {
fn: function(cmp, newV) {
newV.listeners = {
beforeshow: function(cmp) {
cmp.setMinWidth(400);
cmp.setWidth(400);
}
}
return newV;
}
}
}