How to disable tooltip for menuItem in menu view?

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.

You can hide the tooltip on onMouseEvent event of the menu component:

on:{
    "onMouseMove":function(id){
      if($$("toolbar").hasCss(id, "webix_disabled"))
        this.config.tooltip.hide();
    }
  }

http://webix.com/snippet/0868f32f