3.2.0

Disable column in a Grid.

Is it possible to disable a particular column in a Grid, such that the cells in that column can not be selected?
Stanley
June 14,
You can try canceling onSelectedColumnsChanging event -

obj.onSelectedColumnsChanging = function(columns){
    if (columns[0] == 1){ // column-1 not selectable
        return true; // cancel change
    }
}
Alex (ActiveWidgets)
June 14,

Thanks Alex. That worked perfectly.
Stanley
June 15,

This topic is archived.

See also:


Back to support forum