0

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

Chris
  • 7,675
  • 8
  • 51
  • 101
Peter
  • 11,413
  • 31
  • 100
  • 152

1 Answers1

1

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"></script>

with this:

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

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

Falle1234
  • 5,013
  • 1
  • 22
  • 29