Window IN layout cell

Is there anyway to create windows that remain INSIDE a cell of a layout?

I have a very simple system, basically it has a menu at the top, and the rest of the area is dedicated to windows that will appear, resize, close, etc…

I could do it with a couple of divs (even thought I wouldn’t know how to BIND a window to a div), but then there’s the browser window resize problem that should automatically resize the divs.

I used to do it with

but this trick doesn’t work anymore! and anyway, as I said, I wouldn’t know how to bind a window to a div!

You may attach viewport to a div using attachViewportTo method:

dhtmlxWindows/samples/02_viewports/03_render_as.html

Thank you very much!

That did it .