Hello,
I've search into documentation and forum for a while but didn't found an example or a thread corresponding to my needs.
In fact i have a TreeGrid with a text column and 3 checkcolumns. I would like to enable or disable others checkbox in same raw i clicked.
i have this function in my processevent property of my column:
Code:
processEvent: function (name, e, grid, rowIndex, colIndex) {
if (name == 'mousedown') {
var record = e.store.getAt(rowIndex);
record.data.gest = !record.data.gest;
if (record.data.gest) {
record.data.mod = true;
record.data.pub = true;
}
e.store.reload();
e.panel.view.refresh();
}
}
So i can check or uncheck others checkbox but how to disable them only for this raw?