SMART datagrid v.1 > Classes > GridBase
It will be fired just before displaying the cell editor.
If explicitly return false within this event handler, it will not display the editor.
grid.onShowEditor = function (grid, index) {
if (index.column.name() == 'colSalary') {
return false;
}
};