我需要将组合框标签添加到一行。我正在使用 extjs3 。
代码:
var orq_type_button= new Ext.form.ComboBox({
id:'testa',
fieldLabel: 'Organization Type',
editable:false,
emptyText:'Empty',
selectOnFocus:true,
forceSelection: true,
allowBlank: false,
width: 350,
labelWidth: 330,
});
var assignConfig_window_formPanal = new Ext.form.FormPanel ({
id:'assignConfig_window_formPanal',
frame:true,
bodyStyle:'padding:5px 5px 0',
height:110,
buttonAlign:'center',
items: [orq_type_button],
buttons: [ {text: 'Save'} ,
{text: 'Cancel',
handler : function() {
assignConfig_window.hide();
}
}
]
});
屏幕截图:
答案 0 :(得分:0)
labelWidth 是FormPanel或FieldSet的属性,不适用于组合框。将其移动到您的表单面板,以便它可以工作。
答案 1 :(得分:0)