Re: Page refresh increases size of pagemap disk storage

2010-01-23 Thread Ilja Pavkovic
Hi, I think at least you increase the version number of the page with every refresh (as your page seems to have state). Therefore the PageMap keeps the old revisions of your page. Best Regards, Ilja Pavkovic Am Samstag, 23. Januar 2010 08:42:49 schrieb Andrew Lombardi: I've got a

Re: Page refresh increases size of pagemap disk storage

2010-01-23 Thread Andrew Lombardi
Hrmmm, okay 12K for every page refresh though sounds like a bit much ... obviously its a super small page, but pages with lots of these components on them can get up there in sizes It seems that the diskpagestore is endless ... I thought only a certain number of page versions were kept

Re: how to set default options in object palette

2010-01-23 Thread victorTrapiello
I use the palette component, to assigne option to a User. but I don't find a functionnality, how to set already selected option ?. Exemple : a user selected option, I store it into a database: In the future, the user want to update his option, at the moment he doesn't see his previous selected

Re: dynamically adding components to a ListView

2010-01-23 Thread zdmytriv
panels.getModelObject().add(panel); panels is ArrayList and it doesn't have getModelObject() method. zkn wrote: On 22.01.2010, at 03:18, vasil.pup...@gmail.com wrote: http://old.nabble.com/dynamically-adding-components-to-a-ListView-td26626657.html In this post you said You found

Re: dynamically adding components to a ListView

2010-01-23 Thread zdmytriv
I think you meant container.getModelObject().add(panel); zdmytriv wrote: panels.getModelObject().add(panel); panels is ArrayList and it doesn't have getModelObject() method. zkn wrote: On 22.01.2010, at 03:18, vasil.pup...@gmail.com wrote:

Re: dynamically adding components to a ListView

2010-01-23 Thread zdmytriv
Could anyone tell me why it doesn't work? Thanks InteractivePanelPage.html table tr td # Add Panel /td /tr tr wicket:id=interactiveListView td /td /tr /table InteractivePanelPage.java // ... imports public class InteractivePanelPage extends

Re: dynamically adding components to a ListView

2010-01-23 Thread Andrew Lombardi
might want to specify what isn't working exactly? On Jan 23, 2010, at 1:15 PM, zdmytriv wrote: Could anyone tell me why it doesn't work? Thanks InteractivePanelPage.html table tr td # Add Panel /td /tr tr wicket:id=interactiveListView td /td /tr

Re: dynamically adding components to a ListView

2010-01-23 Thread zdmytriv
It doesn't create new panel on addPanelLink click. kinabalu wrote: might want to specify what isn't working exactly? On Jan 23, 2010, at 1:15 PM, zdmytriv wrote: Could anyone tell me why it doesn't work? Thanks InteractivePanelPage.html table tr td # Add Panel /td

Generic modal windows

2010-01-23 Thread Chris Colman
Currently in our wicket app we have multiple pages and panels that can pop up ModalWindows depending on user actions. To support this we have tags like like: div wicket:id=someModalWindow/div Sprinkled through various markups. All of our pages derive from a single page class and I was wondering

RE: Generic modal windows

2010-01-23 Thread Chris Colman
I suppose the pop up/ModalWindow Nirvana that I'm seeking would be to have modals handled as easily as they are in deskop apps: Create a class derived from ModalWindow Instantiate it and call showModal. Without having to worry about adding tags to every page or panel markup that may require a