Ex: I am having data as below
itemData = {
"id": "mark-R-UR",
"value": "",
"title": "Mark Reviewed",
"$css": "webix_icon fa-reviewed",
"enable": false,
"submenu": {
"config": {
"css": "dynamicActionBar_submenu"
},
"data": [{
"id": "MarkReviewed",
"value": "Mark Reviewed",
"$css": "webix_icon fa-reviewed"
}, {
"id": "MarkUnReviewed",
"value": "Mark Reviewed",
"$css": "webix_icon fa-unreviewed"
}]
}
}, {
"id": "Trash",
"value": "",
"title": "Trash",
"$css": "webix_icon fa-delete",
"enable": true
}, {
"id": "MoveItems",
"value": "",
"title": "Move Items",
"$css": "webix_icon fa-move",
"enable": true
}
toolbar = webix.ui({
id : "toolbar",
container:"dMenu",
view:"menu",
css:"dAMenu",
borderless:true,
data: itemData,
type: { subsign:true },
tooltip:{
template:"#title#",
dx:35,
dy:-13,
},
I want to disable tooltip for the item that is disabled.