I want to change the separator to button and remove the separator mousedown event listener.
I try this.
- document.getElementsByClassName(“dhxlayout_sep dhxlayout_sep_resize_v”).onmousedown = “”;
- document.getElementsByClassName(“dhxlayout_sep dhxlayout_sep_resize_v”).removeEventListener(‘mousedown’,_doOnMouseDown);
- $(“.dhxlayout_sep”).off(‘mousedown’);
- $(“.dhxlayout_sep”).unbind(‘mousedown’);
is don’t have The mousedown event function name?
how I can remove the separator event listener?