Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by raj on Nov 04, 2008 21:39
open dhtmlx forum
Dhtml cell Value checking

on 4th cell click i want to check that 3rd cell has value or not 4cell is (coro)

please send its urgent

thank you

Answer posted by Support on Nov 05, 2008 03:52

mygrid.attachEvent("onRowSelect",function(id,ind){
  if (ind==3){
       if (grid.cells(id,4).getValue()) alert("has value");
       else alert("empty");
  }
})