Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Praveen on Dec 02, 2008 21:07
open dhtmlx forum
Getting selected cell value

How can we get the selected cell value after clicking on the particular cell????
Answer posted by Support on Dec 03, 2008 01:38
Can be done as

grid.attachEvent("onRowSelect",function(id,ind){
    alert(grid.cells(id,ind).getValue())
})