Hi,
Does it support the “onitemdbclick” event in the grouplist component?
Could you tell me how to enable this event?
Thanks!
Hi,
Does it support the “onitemdbclick” event in the grouplist component?
Could you tell me how to enable this event?
Thanks!
There is not ondoubleclick event for list. But you can add it for desktop usage. There is not solution for touch usage:
/*
create new view with “on_dblclick” property
based on grouplist
*/
dhx.protoUI({
name:“mygrouplist”,
on_dblclick:{}
},dhx.ui.grouplist);
// use this view instead of grouplist
dhx.ui({
view:“mygrouplist”,
id: “listId”,
…
});
// set onItemDblClick event handler
$$(“listId”).attachEvent(“onItemDblClick”,function(id){
alert(id)
});