使用
,extjs Ext.form.ComboBox项目设置高度不起作用maxHeight: 100
minHeight: 100
maxBoxHeight: 100
minBoxHeight: 100
即使列表div的高度设置也不起作用。 默认情况下,包含div的高度设置为0px。知道如何操纵高度。
html结构的形式可以是div中的div列表。
答案 0 :(得分:0)
您要搜索的设置为listConfig
。在这里,您可以设置将传递给Ext.view.BoundList的构造函数的配置属性。
Ext.create('Ext.form.ComboBox', {
//[...]
listConfig: {
minWidth: 300,
maxHeight: 40
}
});
这是一个完整的例子:
https://fiddle.sencha.com/#view/editor&fiddle/21bc
答案 1 :(得分:0)
我之前做过这件事,对我有用。
您可以为您的comboBox提供cls配置。
cls: 'textTransparent'
你可以在cls中给出高度。
.textTransparent {
height: 25px !important; // this will give the height
font-size: 12px;
font-weight: bold;
color: white;
margin: 0 !important;
}