ExtJS(バージョン4)ComboBoxのドロップダウンメニューの幅を実際の入力ボックスの幅よりも広く設定する方法はありますか?
約200pxにしたいcomboxboxがありますが、結果のドロップダウンにページングがあり、その幅はすべてのページングバーのコントロールを表示するのに十分な大きさではありません。
コンボを作成するための私のコードは次のとおりです。
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
});
これには2つの部分があります。まず、コンボボックス構成で 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;
}
}
}
}