views:

54

answers:

1

Hi, in this example http://layout.jquery-dev.net/demos/toggle_alternate_layouts.html you can see that the resize is "on the fly".

I think it is the option "resizeWhileDragging: true" but it dont work in my example -> http://jsfiddle.net/FrbW8/28/

My Problem is that i cant find any documentation about his (myabe i am too blind :) ) -> http://layout.jquery-dev.net/documentation.cfm

I hope somebody can help me. kind regards Peter

+1  A: 

The resizeWhileDragging feature is not implemented in version 1.2.0 of jquery.layout, but is in 1.3.0.

replace this line:

<script type="text/javascript" src="http://layout.jquery-dev.net//lib/js/jquery.layout-1.2.0.js"&gt;&lt;/script&gt;

with this:

< script type="text/javascript" src="http://layout.jquery-dev.net/lib/js/jquery.layout-latest.js"&gt;&lt;/script&gt;

And you have the newest version of jquery.layout (1.3.0)

Falle1234
"but is in 1.3.0" ... argh. Thank you!
Peter