navigationType
Optional. Defines the action that opens sidebar options
navigationType?: "click" | "pointer";
Default value: "pointer"
info
"click"- displays the sidebar when a user clicks on it"pointer"- displays the sidebar when a user hovers the mouse pointer over it
Example
const sidebar = new dhx.Sidebar("sidebar_container", {
navigationType: "click"
});