3.2.0

OnRowClicked, OnCellClicked

Hi All,

I am trying to differentiate between onRowClicked and onCellClicked. If I click in a cell, it fires an onRowClicked Event and an OnCellClicked event. It fires the onRowClicked event first.

If I click on the row selector on the far left, it only fires an onRowClicked event which is what I want if the row selector is clicked.

The problem is trying to know when a row selector was clicked and when a cell was clicked since both events fire when a cell is clicked.

Thanks,
Scott
Scott
March 26,
Maybe you should just use onSelectorClicked event?

obj.onSelectorClicked = function(event, rowIndex){
alert(rowIndex);
}
Alex (ActiveWidgets)
March 26,
Thanks Alex. That worked great!
Scott
Scott
March 26,

This topic is archived.

See also:


Back to support forum