Categories | Question details Back To List | ||
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"); |