returns the excell type of the cell in question
rowId | string|number | the row ID |
cellIndex | number | the cell index |
string | the type of excell (the code like "ed", "txt", "ch", etc.) |
Available only in PRO Edition
// setting the type "txt" for the 2nd cell in the row with the id "row1"
myGrid.getCellExcellType("row1",1,"txt");
// getting the the type of the 2nd cell in the row with the id "row1"
var type = myGrid.getCellExcellType("row1",1); // -> returns "txt"
added in version 5.1
Back to top