navigationType
Optional. Defines the action that opens menu options
navigationType?: "click" | "pointer";
Default value: "pointer"
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 menu = new dhx.Menu("menu_container", {
navigationType: "click"
});
Related sample: Menu. Navigation type. Click or pointer (hover)