Deteching Grid Cell Click

Is there a way to detect which cell was clicked in the onbeforeselect event?

James

The specific condition I would like at the moment is to be able to allow a checkbox to be clicked without triggering the row selection logic. Although I will probably need to extending this to include custom actions on each cell.

Hello,

You can define onclick handler for an element inside a grid row. The handler is mapped to element className. And if this handler returns false, the event won’t be listened by row event handlers:

$$(“grid”).on_click[“my_checkbox”] = function(e){
return false
}

I have attached the sample with checkbox as activeContent of grid rows.
form.zip (207 KB)