ItemDblClick event is firing two time when continuously clicking the item for four times.Actually I am rendering a view and displaying it for double click event on items in datatable. When I click the item for 4 times the the rendered view overlapping as double-click event is calling multiple times. How can I resolve this issue
Sorry, but it sounds as a valid reaction. You have 4 clicks which is double-click executed two times ( assuming that you have a small delay between clicks )
You can use some kind of check inside of dblclick handler to prevent double-execution of logic.
Can you please suggest me how to handle this?
I suppose you handle double clicking anyway to render the view. So you need to check whether the view exists (or it is visible) and render it only if there isn’t the one on page.