navigationType
Optional. Defines the action that opens menu options
navigationType?: "click" | "pointer";
Default value: "click"
info
"click"
- displays the menu when a user clicks on it"pointer"
- displays the menu when a user hovers the mouse pointer over it
Example
const toolbar = new dhx.Toolbar("toolbar_container", {
navigationType: "pointer"
});
Related sample: Toolbar. Navigation type. Click or pointer (hover)
Change log:
Added in v8.4