I have a issue using w2ui sidebar with mcustomscrollbar. I have the w2ui sidebar associated to a div and this works fine, but when i use mcustomscrollbar i have a problem.
To use mcustomscrollbar i associated the sidebar to a sub div and the mcustomscrollbar to the first div like this
HTML:
<div id="pane-menu">
<div id="pane-menu-content"></div>
</div>
JS:
This line call my method where a use the mcustomscrollbar plugin
$.pui.common.scrollBarProperties('#pane-menu');
This line i associated the sidebar to sub div
$('#pane-menu-content').w2sidebar({
...
...
After this change, the nodes of sidebar stay hidden...if i change de css and put the overflow to visible i destroy de dynamically resize of sidebar and I do not want this to happen.
If i do not use mcustomscrollbar and associate the sidebar to first div ('#pane-menu') this works fine, but i need to use mcustomscrollbar.
My question is, why the sidebar nodes stay hidden if i associate that to de sub div ('#pane-menu-content')??
Any suggestions?
Thanks guys :)