cell type

how do i know the cell type of the current selected cell…?



thanks…

There is no API to access such data
If you not using per-cell-typing it can be taken as
    grid.cellType[index]
where index - column index

In case of per-cell typing it can be taken as

    var type =     (grid.cells(id,index).cell._type||grid.cellType[index]);