valery.stroeder
8 Feb 2010, 4:15 AM
Hello,
I have a page with some panels (ContentPanel, FormPanel...)
These panels are dragable and resizable. I want that their positions and size would be restore when I reload the page : I try this
panel = new ContentPanel();
panel.setStateful(true);
// add content to the panel ...
new Resizable(personalInformationPanel);
new Draggable(personalInformationPanel, personalInformationPanel.getHeader());
It doesn't work. My panel take always its original size and place...
I have a page with some panels (ContentPanel, FormPanel...)
These panels are dragable and resizable. I want that their positions and size would be restore when I reload the page : I try this
panel = new ContentPanel();
panel.setStateful(true);
// add content to the panel ...
new Resizable(personalInformationPanel);
new Draggable(personalInformationPanel, personalInformationPanel.getHeader());
It doesn't work. My panel take always its original size and place...