i want to add a onItemDblClick event handler to a datatable, that only works if i dbl click on a certain column , not if i dbl click anywere on the table. so i was thinking if there is a function to get the name of the column on the cell that i just dbl clicked?
Hello,
Datatable ID you get within the event is an object with row and column properties.
on:{
'onItemDblClick':function(id){
// id = {row:1, column:"some"}
}}
Check the snippet please: http://webix.com/snippet/cba11646