2列にしたいグリッドパネルがあります。最初の列の幅を100にし、2番目の列の幅をグリッドパネルの残りの幅に合わせます。
何か案は?
編集
sensorListPanel = new xg.GridPanel({
id: 'sensorListPanel',
region: 'west',
width: 415,
viewConfig: {
forceFit:true,
//fitcontainer:true
},
store: sensorStore,
cm: new xg.ColumnModel({
defaults: {
width: 120,
sortable: true
},
columns: [
smSensors,
{id:'Station',header: "Station", width: 95, dataIndex: 'gml_id'},
{id:'Description', header: "Description", dataIndex: 'description'}
]
}),
sm: smSensors,
columnLines: true,
title:'Sensors',
});