Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Raj on Nov 03, 2008 23:18
open dhtmlx forum
Check the Cell Has empty value in Dhtml Grid

i have a dhtml grid,i grid i want to know the cell 5 has any value or not.
my grid name is mygrid and cell no is 4.

Please help me
Answer posted by Support on Nov 04, 2008 02:05
You can get cell of any value as 

  grid.cells(rowId, cellIndex).getValue();

so you can just use

if (grid.cells(rowId, cellIndex).getValue()=="" ) alert("cell is empty");