Categories | Question details Back To List | ||
grid cell How we can get the cell type , wheter it is ed , ch or read only Thanks Answer posted by dhxSupport on Feb 17, 2009 08:45 To get columnd type: mygrid.getColType(cInd) where cInd - column index To check if cell is editable or not: mygrid.cellById(rowId,cellIndex).idDisabled() - returns true is cell is disabled |