Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

A full page layout with resizable panes using jQuery UI

I'm trying to create the overall layout of a webapp. The app is full-screen and has a fixed header and three columns/panes. The center pane consists of two rows:

app wireframe layout

The panes should be resizable through dragging the pane edges with the mouse (see arrows in image above).

The individual panes have should have vertical scrollbars in case of overflowing content, that is, no global browser window scrollbar.

Using jQuery and jQuery UI Resizable, I've created this (partly working) JSFiddle.

HTML:

<div class="header">
  Fixed header    
</div>
<div class="wrapper">
   <div class="inner-wrapper">
       <div class="left pane">Left</div>
       <div class="center pane">
           <div class="inner">
               <div class="top">Center top</div>
               <div class="bottom">Center bottom</div>
           </div>
       </div>
       <div class="right pane">Right</div>
   </div>
</div>

CSS:

html, body {
    height: 100%;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background-color: moccasin;  
}
.wrapper {
    position:absolute;
    top: 21px;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: fuchsia;
}
.inner-wrapper,
.center.pane .inner {
    display: table;
    width: 100%;
    height: 100%;
}
.pane {
    display: table-cell;
}
.left.pane {
   background-color: olivedrab; 
}
.center.pane {
    background-color: lightblue;
}
.center.pane .inner .top,
.center.pane .inner .bottom{
    display: table-row;  
}
.center.pane .inner .top {
    background-color: lightcoral;   
}
.center.pane .inner .bottom {   
    background-color: orange;
    height: 100%;
    width: 100%;
}
.right.pane {
    background-color: #999;
}

JavaScript:

$(function () {
    $(".left.pane").resizable({
        handles: "e, w"
    });
    $(".right.pane").resizable({
        handles: "e, w"
    });
    $(".center.pane .inner .bottom").resizable({
        handles: "n, s"
    });
});

It has several issues, including:

  • When resizing Left, Right is also resized (which it shouldn't)
  • When resizing Left towards full width, Center content is hidden under Right
  • When resizing Right the wrapper (Fuchsia-colored) is partly visible
  • Center bottom is resized through the top of the Center top, not through it's own top

I'm aware of the jQuery Layout plugin, but as far as I can see, it doesn't offer quite the layout I'm after. Also, I want to keep it as simple as possible.

Furthermore, I have tried Methvins splitter plugin, but couldn't get it to work.

My question:

Any suggestions for how to create a layout as in the image from jQuery UI Resizable and what I have in the JSFiddle?

like image 376
agibsen Avatar asked Feb 14 '14 16:02

agibsen


5 Answers

There are more appropriate plugins, based on jQuery to obtain what you want.

OPTION 1:

I personally used in a my project UI Layout.

It is an almost old project (6 years ago), but in mid-2014 its development is re-started, even if there are no more information after september 2014.

Actually, last stable version is 1.4.3, released in sept '14. New website is:

  • https://github.com/allpro/layout/

OPTION 2:

If you need a more complete solution, you could think about jEasy UI, that is a complete framework that

[...] helps you build your web pages easily

It is a sort of replacement of jQuery UI, with some similar widgets (dialogs, accordions, ...) and something exclusive, like Layout module, already linked in my answer.


OPTION 3: Analogue solution to the previous one, is Zino UI, another complete UI framework that has a specific component dedicated to "Split Layout"


OPTION 4: jQWidgets is another library, with similar purposes of previous ones, and specifically could be interesting jqxSplitter module.


Related alternative (similar):

There is also another alternative, that allows to slice panels in the browser windows but in addition allows to drag&drop single panels creating different tabs, and side-by-side sub-windows.

This is called Golden Layout. It's different from previous ones, for many reasons also more powerful but surely at the moment it has not Touch support...

like image 84
Luca Detomi Avatar answered Nov 10 '22 12:11

Luca Detomi


There were a few small problems that caused the behaviour that you don't like.

These were fixed in this Fiddle

The problems were:

When resizing Left, Right is also resized (which it shouldn't)

Fixed by setting a initial width (in percent)

When resizing Left towards full width, Center content is hidden under Right

Couldn't reproduce

When resizing Right the wrapper (Fuchsia-colored) is partly visible Center bottom is resized through the top of the Center top, not through it's own top

Fixed by setting left to 0 during resize.

$(".right.pane").resizable({
    handles: "e, w",
    resize: function(event, ui) {
      ui.position.left = 0;
    }
  });

Center bottom is resized through the top of the Center top, not through it's own top

This is due to that JQuery UI Resizable uses relative positioning which do not work in table cells. Fixed by adding a content div that handles the resize.

<div class="top pane"> 
   <div class="top-content">Center top</div>
</div>
like image 10
Richard Houltz Avatar answered Nov 10 '22 13:11

Richard Houltz


I found one which seems acceptable for this requirement, if you looking for something more minimalistic compared to jEasy UI. : )

  • http://w2ui.com/web/demo/layout
  • Also it's no dead project; Seems still active on github https://github.com/vitmalina/w2ui/, which is nice.

I'll give it a try. Just wanted to share this, to save others search time, hopefully.

like image 8
fentas Avatar answered Nov 10 '22 12:11

fentas


i'm usign this plugin with jquery

http://www.bramstein.com/projects/jlayout/jquery-plugin.html

like image 1
Gerardo Pacheco Avatar answered Nov 10 '22 13:11

Gerardo Pacheco


I came up with the answer to this myself, although in the end it took me over a year of development! The result is a modern, responsive panel layout widget built using jQuery and jQuery UI widget factory.

http://www.silvercore.co.uk/widgets/propanellayout/

The best solution at the time the question was asked was undoubtedly jQuery UI.Layout, but over time that project has stagnated and the plugin does not work with jQuery 2. Despite the code being released on GitHub its fate is unknown, which makes using it as the foundation of a long term project questionable.

A few of the other links posted here are dead now and if you don't want or need a full application framework your choices are limited.

like image 1
Stephen Blair Avatar answered Nov 10 '22 12:11

Stephen Blair