So here is my dilemma. I have single click edit mode set to true and also have onRowDblClick attached to the grid. When I double click on a cell, single click edit kicks in then onRowDblClick kicks in right after. If I want to make sure that the user wanted double click without allowing the grid to process the single click event, how would you suggest I do this?
If I use a timer between the first and second click, stage 0 in onEditCell will need to return false but when I do that onRowSelected event no long gets executed.
how would you suggest I do this?
The only possible solution - use timeout to detect was it a real click or a part of dblclick
>> but when I do that onRowSelected event no long gets executed.
Please check attached sample
1221125547.zip (85.3 KB)
Great! Thanks, this will do!