Re: Inmethod datagrid adding aggregate rows

2010-09-07 Thread Branislav Kalas
Hi i also tried this. I ended up by positioning aggregation toolbar right after column headers. (as custom toolbar which extends AbstractHeaderToolbar). I think it is not easy to have this toolbar at the bottom (specially when you have enabled column resizing, because you have to bind somehow

Reset values after submit with validation error in table components

2010-07-11 Thread Branislav Kalas
Hi, I have table which is part of form. Table extends org.apache.wicket.extensions.markup.html.repeater.data.table.DataTable. In that table i use some AbstractColumns that renders input boxes, for example: columns.add(new AbstractColumn(new StringResourceModel("header.takenBackNetto", this, n

Re: Page maps problem

2010-07-06 Thread Branislav Kalas
hould set all the popups to use the same pagemap, i think that should help. -igor On Sun, Jul 4, 2010 at 12:19 PM, Branislav Kalas wrote: Hi, sorry for my terrible english.I am trying to achieve this: I have webapp where i want to allow users open some links in new window. I want to create new

Page maps problem

2010-07-04 Thread Branislav Kalas
Hi, sorry for my terrible english.I am trying to achieve this: I have webapp where i want to allow users open some links in new window. I want to create new page maps for those windows (cause i think , it's correct (page expired problem)). In some pages i use pickers that opens modal windows (an

Re: Links in DataTable

2010-06-30 Thread Branislav Kalas
and i forgot this in the onclick handler : @Override protected void onClick() { setResponsePage(new HomePage(parameters)); System.out.println("clicked on link"); } On 06/30/2010 07:59 PM, Branislav Kalas wrote: Put this into WicketApplication.java @Override

Re: Links in DataTable

2010-06-30 Thread Branislav Kalas
Put this into WicketApplication.java @Override protected void init() { super.init(); getPageSettings().setAutomaticMultiWindowSupport(true); } Problem was, that you opened new windows in same page map. I cannot explain it better cause, i don't understand page maps very w

Re: Delete page map on close browser window

2010-06-29 Thread Branislav Kalas
On 06/29/2010 09:03 PM, Branislav Kalas wrote: On 06/29/2010 08:48 PM, Branislav Kalas wrote: On 06/29/2010 11:38 AM, Branislav Kalas wrote: Hi, in my apllication,users can open items from menu in new tabs/windows. When user opens item in new window system creates new page map for it. When

Re: Delete page map on close browser window

2010-06-29 Thread Branislav Kalas
On 06/29/2010 08:48 PM, Branislav Kalas wrote: On 06/29/2010 11:38 AM, Branislav Kalas wrote: Hi, in my apllication,users can open items from menu in new tabs/windows. When user opens item in new window system creates new page map for it. When user close window, pagemap is still in session

Re: Delete page map on close browser window

2010-06-29 Thread Branislav Kalas
On 06/29/2010 11:38 AM, Branislav Kalas wrote: Hi, in my apllication,users can open items from menu in new tabs/windows. When user opens item in new window system creates new page map for it. When user close window, pagemap is still in session. Is it somehow posibble to delete page map when

Delete page map on close browser window

2010-06-29 Thread Branislav Kalas
Hi, in my apllication,users can open items from menu in new tabs/windows. When user opens item in new window system creates new page map for it. When user close window, pagemap is still in session. Is it somehow posibble to delete page map when user close browser window? Thanks. ---