Disable event onItemClick

Hi!

Is there any way to disable/ignore onItemClick in a datatable? My problem is that I want the item to be selected only if double click event occurs. I’ve tried to return false in onBeforeSelect, but double click is affected too.

Thank you very much!!!

You can redefine

dtable.on_click.webix_cell

after datatable creation, to block the default on-click selection logic.

http://webix.com/snippet/f84dcea1

Thanks a lot Maksim!!!