jquery ui layout customization
I like to make the ui-layout-west section fixed width and like to hide the resizable bar. I tried this but I still see the right border of ui-layout-pane.
on css:
.ui-layout-west {
background: #F8F8FF !important;
width: 300px !important;
}
and on Java script:
west: {
enableCursorHotkey: false,
closable: false,
resizable: false,
panespacing: 0
}
Any ideas about how to remove teh resiable bar or hide it?
尝试指定spacing_open和spacing_closed选项而不是panespacing
:
west: {
enableCursorHotkey: false,
closable: false,
resizable: false,
spacing_open: 0,
spacing_closed: 0
}
链接地址: http://www.djcxy.com/p/62340.html
上一篇: 根据需要调用getView()
下一篇: jquery ui布局定制