Re: could not serialize the page java.lang.OutOfMemoryError: PermGen space

2010-10-14 Thread Thomas Kappler
On 10/13/10 16:25, fachhoch wrote: could not serialize the pagejava.lang.OutOfMemoryError: PermGen space , This is not *the* heap (for objects) as others have said, it's the permanent generation heap, which is a different memory section used by the JVM, for instance for interning

Re: WebPage: geting string

2010-10-14 Thread msantos
Thanks a lot, i will try it -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/WebPage-geting-string-tp2993717p2994968.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: How to update a Panel when user selects a drop down chioce in Wicket?

2010-10-14 Thread Maarten Bosteels
and http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-phonebook On Thu, Oct 14, 2010 at 2:50 AM, Jeremy Thomerson jer...@wickettraining.com wrote: Also, if you haven't seen it, look at the Wicket Examples: http://wicketstuff.org/wicket14/ And specifically, this page:

Re: WebPage: geting string

2010-10-14 Thread Ernesto Reinaldo Barreiro
Martin, What does method escapeHighEnd() do? Regards, Ernesto On Wed, Oct 13, 2010 at 4:11 PM, Martin Makundi martin.maku...@koodaripalvelut.com wrote: Here: /**   * Renders given page   * @param pageClass to render   * @param pageParameters to render with   * @param clean   * @return

Re: [wiquery] How to open a modal dialog from a Link?

2010-10-14 Thread Peter Munro
That works beautifully. Thanks Ernesto. I also made a small mod to remove the 'href' on the client side so that it just opens the dialog and doesn't follow the link: JsQuery linkQuery = new JsQuery(link); linkQuery.$().chain(attr, 'href', '#'); link.add(new

1.5 RequestMapper and Form submit

2010-10-14 Thread marco.behler
First of all, congratulations to the new request handling functionality. I've been running into a tiny issue however. Similarily to wicket-examples, I've got the following mapping: root.add(new LocaleMapper(new MountedMapper(/myPage, MyPage.class))); which let's me access the page via

Re: 1.5 RequestMapper and Form submit

2010-10-14 Thread Matej Knopp
Why don't you store the locale in session every time it is in URL? Or if you need more control store it in the page instance. Kind regards, Matej Knopp InMethod On Thu, Oct 14, 2010 at 4:37 PM, marco.behler m...@coderwerk.com wrote: First of all, congratulations to the new request handling

Re: 1.5 RequestMapper and Form submit

2010-10-14 Thread marco.behler
I tried to swap out a tiny part of one of our old legacy (struts) applications, which is clustered on several servers but is absolutely stateless, so no session replication, no sticky sessions, nada. The old application reads the locale from the url every time Even though I'd love to store

Re: 1.5 RequestMapper and Form submit

2010-10-14 Thread Igor Vaynberg
make locale mapper the root mapper, that way all url generation and resolving will run through it -igor On Thu, Oct 14, 2010 at 7:53 AM, marco.behler m...@coderwerk.com wrote: I tried to swap out a tiny part of one of our old legacy (struts) applications, which is clustered on several servers

Re: 1.5 RequestMapper and Form submit

2010-10-14 Thread marco.behler
Perfect. Thanks! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/1-5-RequestMapper-and-Form-submit-tp2995427p2995530.html Sent from the Users forum mailing list archive at Nabble.com. - To

RequestCycle.getResponsePage and PageReferenceRequestTarget

2010-10-14 Thread Alexander Morozov
Hi ppl, can anybody explain me why RequestCycle.getResponsePage() not handle PageReferenceRequestTarget ? Is it by design or is it bug ? public final Page getResponsePage() { IRequestTarget target = getRequestTarget(); if (target instanceof

Re: RequestCycle.getResponsePage and PageReferenceRequestTarget

2010-10-14 Thread Igor Vaynberg
fixed, thanks. -igor On Thu, Oct 14, 2010 at 9:07 AM, Alexander Morozov alexander.v.moro...@gmail.com wrote: Hi ppl, can anybody explain me why RequestCycle.getResponsePage() not handle PageReferenceRequestTarget ? Is it by design or is it bug ?        public final Page getResponsePage()

MarkupContainer's ComponentSourceEntry

2010-10-14 Thread richard emberson
The MarkupContainer's ComponentSourceEntry is a private class with a private constructor. No where in the MarkupContainer code is an instance of ComponentSourceEntry created. Is ComponentSourceEntry something on its way out or some feature yet to be engaged? Richard -- Quis custodiet ipsos

Re: How to update a Panel when user selects a drop down chioce in Wicket?

2010-10-14 Thread gouthamrv
I have found the problem, now it is working as expected. But I am seeing one more issue with navigation bar message and numbers that it shows. First time when I load page, it shows showing 1 to 10 of 50, now I clicked next arrow link and it shows showing 11 to 20 of 50. After this, I changed

Re: could not serialize the page java.lang.OutOfMemoryError: PermGen space

2010-10-14 Thread Erik van Oosten
fachhoch, Please investigate whether any of your components can have references to something too big. Regards, Erik. Op 13-10-10 16:25, fachhoch schreef: could not serialize the pagejava.lang.OutOfMemoryError: PermGen space , I got this error, it happens once in a while , its hard

Re: How to update a Panel when user selects a drop down chioce in Wicket?

2010-10-14 Thread Igor Vaynberg
your dropdown should call table.setcurrentpage(0) -igor On Thu, Oct 14, 2010 at 10:20 AM, gouthamrv goutha...@yahoo.com wrote: I have found the problem, now it is working as expected. But I am seeing one more issue with navigation bar message and numbers that it shows. First time when I

Re: MarkupContainer's ComponentSourceEntry

2010-10-14 Thread Igor Vaynberg
this is an experimental feature that hasnt quiet been finished yet. see IComponentSource. -igor On Thu, Oct 14, 2010 at 10:15 AM, richard emberson richard.ember...@gmail.com wrote: The MarkupContainer's ComponentSourceEntry is a private class with a private constructor. No where in the

Re: Feedback message does not show in new WebPage

2010-10-14 Thread Ian Marshall
(Sorry for the delay in responding. I was tied up in some coding which I wanted to get done to save having to relearn it all again to finish it.) Thanks for the code tip. I added IPageSettings ipsSettings = getPageSettings(); ipsSettings.setAutomaticMultiWindowSupport(false); to my

Re: How to update a Panel when user selects a drop down chioce in Wicket?

2010-10-14 Thread gouthamrv
Yes you are right!. That works. Thank you very much!! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/How-to-update-a-Panel-when-user-selects-a-drop-down-chioce-in-Wicket-tp2994412p2995985.html Sent from the Users forum mailing list archive at Nabble.com.

How to add image to table column and how to change image this on click?

2010-10-14 Thread gouthamrv
I am creating table with AjaxFallbackDefaultDataTable. I want to add image to each column and when user clicks any column for sorting, I want to change this image. Is this is possible? -- View this message in context:

Error updating DataTable after submit

2010-10-14 Thread mailinglists_inbox
Hello, I've just come across wicket and started playing around - so far, I encounterd some issues: My first issue is: Given a table and a Panel: //SomePage.java private TablePanel tp; tp = new TablePanel(tablePanel,columns,new PersonBeanProvider(searchFilter),12); //TablePanel.java class

Yui not included in wicket-extensions?

2010-10-14 Thread mailinglists_inbox
Hello, Is yui included in wicket-extions? My pom.xml says: dependency groupIdorg.apache.wicket/groupId artifactIdwicket-extensions/artifactId version${wicket.version}/version /dependency But

Re: Error updating DataTable after submit

2010-10-14 Thread Alexander Morozov
Hi, I the method onUpdate(AjaxRequestTarget target) you shoud reference to existing component: @Override protected void onUpdate(AjaxRequestTarget target) { target.addComponent(tableWrapper); }

Re: How to add image to table column and how to change image this on click?

2010-10-14 Thread Alexander Morozov
Hi, If I understand you correctly, you need to add ordering direction images it a table header. This can be done with CSS for instance: .wicket_orderUp, .wicket_orderDown, .wicket_orderNone { text-decoration: underline; padding-right: 15px;