buy my book!

a few Splitter enhancements.

as promised, the Splitter can now do vertical splitting as well as horizontal.

Also, I’ve implemented minimumSize for the panels.

An example:

top left, minimum height 50px
bottom left, minimum height 100px
right, minimum width:50px

The HTML for the above is this:

<div id=”splitter_wrapper” style=”height:200px;border:1px solid #000″>
<div id=”topleft”>top left, minimum height 50px</div>
<div id=”bottomleft”>bottom left, minimum height 100px</div>
[...]

Splitter for MooTools

A while back, I wrote a panel script I called “resizeabletable”. It took a table and made it resizeable, such that you could drag the borders of the table to resize the cells of the table.

I did this to emulate the Splitter capability which is common in a lot of visual languages. For example, there [...]