I have a gridpanel that i would like to have 2 columns in. I want the first column to have a width of 100 and the second column to fill the remaining width in the gridpanel.

Any ideas?

EDIT

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',
});
link|improve this question

75% accept rate
feedback

1 Answer

up vote 1 down vote accepted

try setting forceFit in viewconfig

viewConfig:{forceFit:true}

By specifying forceFit:true, non-fixed width columns will be re-proportioned (based on the relative initial widths) to fill the width of the grid.

link|improve this answer
When I do that, the columns are divided in 2 and evenly spread out. Please see the code I just posted. Thanks!!! – gberg927 Dec 15 '11 at 19:44
1  
remove width from defaults config of column model – MMT Dec 16 '11 at 4:05
check jsfiddle.net/Bx4Bx – MMT Dec 16 '11 at 4:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.