I need a read-only eXcell that responds to an onClick or onDblClick event. it appear these cells do not respond to anything. what I’m trying to do is have a search window come up when cell is clicked on and have data from that search populate the cell. don’t need help with 2nd part, just being able to click the cell so I can call my search function.
The grid provides next events
onRowSelect
onRowDblClicked
which fired when cell clicked, or dbl-clicked
grid.attachEvent("onRowSelect"function(id,ind){
if (ind == INDEX ) alert("click at row "+id);
return true;
})
where INDEX - index of necessary column