开发者

jQuery UI.Layout only resize west pane issue

开发者 https://www.devze.com 2023-04-01 15:18 出处:网络
I am using the JQuery UI.Layout plugin to create a software layout for a very complex UI. I have stripped it down to the most basic 5 pane layout and all panes collapse and reopen. However I need the

I am using the JQuery UI.Layout plugin to create a software layout for a very complex UI. I have stripped it down to the most basic 5 pane layout and all panes collapse and reopen. However I need the east pane to be开发者_如何学C re-sizable, I looked through the documentation (very long, but not very useful) to find the solution, but I didn't find it. If anyone has any experience with this frustrating plug in then I would appreciate being pointed in the right direction.

I am using this example http://layout.jquery-dev.net/demos/example.html and have tried everything mentioned in the docs, I would also like a button to close the west pane, but yet again everything that I have tried does not work.


just set east to be resizable.

outerLayout = $('body').layout({
    default : {
        //All pane properties defaults
    },
    //East only
    east : {
       resizable : true
    }
});

EDIT: Just viewed your link, and you need jQuery UI plugins...either link the jQuery UI plugins you need, or just add jQuery UI in your project.

0

精彩评论

暂无评论...
验证码 换一张
取 消