Categories | Question details Back To List | ||
dhtmlxfolders: onclick and ondblclick When I enable the events "onclick" and "ondblclick" at the same time in dhtmlxfolders, the onclick-event is fired on every double-click. Is there a way to solve this? Answer posted by Support on May 16, 2008 06:42 >>Is there a way to solve this? Unfortunately no. The browser generates a lot of events when doubleclick occurs, and there is no way to differ real onclick event from onclick generated during doubleclick The only possible workaround - use timeout with onclick event var ctr=null; folders.attachEvent("ondblclick",function(){
|