Hey guys,
I searched the forums and saw something about a fix for "collapsible: false" for panel layouts back in 2007 but nothing for grids.
I'm using a grouping grid:
Code:
var grid = new xg.GridPanel({
store: new Ext.data.GroupingStore({
reader: reader,
data: xg.dummyData,
sortInfo:{field: 'txType', direction: "ASC"},
groupField:'txType'
}),
columns: [
{header: "Transaction Type", width: 265, sortable: true, dataIndex: 'txType'},
{header: "SnapCredits", width: 60, sortable: true, align:'center', dataIndex: 'credits'},
{id:'trigger', header: "Charge Trigger", width: 265, sortable: true, dataIndex: 'trigger'}
],
view: new Ext.grid.GroupingView({
forceFit:true,
showGroupName: false,
groupTextTpl: '{text}'
}),
frame:true,
width: 700,
height: 450,
collapsible: false,
hideCollapseTool: true,
renderTo: document.body
});
Even though I set collapsible to false, the groups are still collapsible and the collapse tool still display. What am I missing?