I would like my grid to use Flex and still allow resize of columns. Is this possible? I have tried several API methods, and Flex works, but cannot make the columns resizable.
Here is the relevant code:
var obj = {
//width: "flex",
flexWidth: true,
height: "flex",
maxWidth: '98%',
dataModel: dataModel,
colModel: colM,
//scrollModel:{pace: 'fast', autofit:true, theme: true },
showTop : false,
editable: true,
sortModel: {
on: true,
sorter:[ { dataIndx: "deviceID", dir: "up" } ],
multiKey: 'shiftKey',
type: 'remote'
},
//stripeRows: true,
resizable: true,
columnBorders: true,
freezeCols: 1,
filterModel: { on: true, mode: "AND", header: true, type: "remote"},
selectionModel: { type: 'cell' },
pageModel: { type: 'remote', rPP: 15, rPPOptions:[10, 15, 25, 50, 100, 250, 500]},
numberCell: {show: false},
//flex: { one: true }
};