I have an extendedDataTable with a selectionchange event and selectionMode="single". Furthermore I work with the attribute "onrowdblclick" wich invokes a JavaScript function.
<rich:extendedDataTable id="myTable" ... selectionMode="single" var="item" selection="#{myController.selection}" onrowdblclick="showPageByDoubleClick('#{item.id}');">
<a4j:ajax event="selectionchange" listener="..."/>
My question is, how can I prevent the extendedDataTable from invoking the selectionchange event if the user has double clicked a row?
On double click I forward to a new page and the selectionchange event takes too much time, thus the page forwarding is delayed. We have very strict performance requirements.
I'am using RichFaces 4.5.9
Best regards
return false;inonrowdblclickafter existing action call - Vasil Lukach