extjsを使用したテキスト、ボタン、ドロップダウンを持つextjsのフィールドセットを使用しています。
フィールドセットの私のコードは次のとおりです
ds=Ext.create('Ext.form.FieldSet', {
title: 'System Input',
width:500,
style: {
marginLeft: '5px',
marginTop:'10px'
},
labelWidth: 75,
items :[{xtype: 'displayfield', value: 'Modify the inputs below to run another simulation'},roofarea,clss,roofslider,pvtech,rate,pvsyssize,systypebuild,elecrate,tiltang,scclsbtn,scclsbtncls]
});
今、私はこのフィールドセットにテキスト フィールド (つまり、roofarea) とボタン (ieclss) を持っています。テキスト フィールドのすぐ横にボタンが必要です。このためのコードは次のとおりですが、ボタンはテキスト フィールドのすぐ下にあります。
roofarea = Ext.create('Ext.form.field.Text', {
width: 300,
autoScroll :true,
labelWidth: 160,
style: {
marginLeft:'10px',
marginTop: '10px',
marginBottom:'10px'
},
fieldLabel: 'Total Roof Area(Sq. Meter):',
readOnly: true,
value:faread
});
var clss =Ext.create('Ext.Button', {
text: 'Close',
width:15,
handler: function() {
smWindow.hide();
}
});
他の項目はテキスト フィールドとボタンの下にある必要があります。
これを手伝ってください。