:: Forum >>
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
Wednesday, March 26, 2008
Maybe you should just use onSelectorClicked event?
obj.onSelectorClicked = function(event, rowIndex){
alert(rowIndex);
}
Alex (ActiveWidgets)
Wednesday, March 26, 2008
Thanks Alex. That worked great!
Scott
Scott
Wednesday, March 26, 2008
This topic is archived.
Back to support forum
Forum search