Re: wicketstuffpush 1.5 timepushservice not working

2011-09-30 Thread Rodolfo Hansen
I will try and find some time to check this out for you... On Fri, Sep 30, 2011 at 4:06 PM, vineet semwal wrote: > hellos ! > > i have used wicketstuff 1.4.17.2 push before with wicket 1.4.x with > great success.. > but i cant make wicketstuff 1.5.x push timerpushservice working with > wicket 1.5

Re: On component added to ajax request target

2011-09-30 Thread Dan Retzlaff
You could override WebApplication#newAjaxRequestTarget to add a listener to each target. You can look at AjaxRequestTarget#getComponents() to see if your list is there, and maybe add more stuff. Sounds messy though, since that's an application-wide listener. Maybe you could generate an event if any

On component added to ajax request target

2011-09-30 Thread Nelson Segura
I wonder if anyone has ideas on how to add a component to an AjaxRequestTarget if another related component is added to it. I am thinking about my Ajax List, there are several ways it can be added to a request target: sorting, filtering, paging, etc. I have another components that displays data rel

wicketstuffpush 1.5 timepushservice not working

2011-09-30 Thread vineet semwal
hellos ! i have used wicketstuff 1.4.17.2 push before with wicket 1.4.x with great success.. but i cant make wicketstuff 1.5.x push timerpushservice working with wicket 1.5.x i dont see error or any thing that can help me track something useful..,i am attaching a simple quickstart application for

Re: Wicket Wizard -- How to jump back to a wizard step from outside the wizard

2011-09-30 Thread Sven Meier
Use the current url of your page as callback url: String callback = urlFor(new RenderPageRequestHandler(new PageProvider(getPage(.toString(); Regards Sven On 09/30/2011 10:18 PM, bad boy wrote: > Hi > > I am creating a wicket wizard based workflow and in one of the steps, I > ask the us

Yet another PageExpiredException question

2011-09-30 Thread Alec Swan
Hello, I have recently reviewed our application log files and noticed a lot of PageExpiredException error logs. Here are some of them: 1. PageExpiredException: Cannot find the rendered page in session [pagemap=null,componentPath=1,versionNumber=0] 2. PageExpiredException: No behaviors attached to

Wicket Wizard -- How to jump back to a wizard step from outside the wizard

2011-09-30 Thread bad boy
Hi I  am creating a  wicket wizard  based workflow and in one of the steps, I ask the user to authenticate via Facebook connect /OAUTH.  The Facebook api enables me to provide return URL where Facebook redirects the user after successful authentication. The user returns to my application  and

Re: [Wicket 1.5.1] Support for SpringBean proxy has gone

2011-09-30 Thread Pierre Goupil
Hi, I'd love to have this when I switch to 1.5, too. Thanks in advance, Pierre On Fri, Sep 30, 2011 at 7:26 PM, Zilvinas Vilutis wrote: > wow :) > > Well that feature definitely was in 1.4.1x :) I thought it was in > 1.5.x by default? > > Regards > > Žilvinas Vilutis > > Mobile: (+1) 623

Re: [Wicket 1.5.1] Support for SpringBean proxy has gone

2011-09-30 Thread Zilvinas Vilutis
nope, I just lied :) I was talking about the setProxy parameter in SpringComponentInjector constructor... Žilvinas Vilutis Mobile:   (+1) 623 330 6048 E-mail:   cika...@gmail.com On Fri, Sep 30, 2011 at 10:26 AM, Zilvinas Vilutis wrote: > wow :) > > Well that feature definitely was in 1.4.1x

Re: [Wicket 1.5.1] Support for SpringBean proxy has gone

2011-09-30 Thread Zilvinas Vilutis
wow :) Well that feature definitely was in 1.4.1x :) I thought it was in 1.5.x by default? Regards Žilvinas Vilutis Mobile:   (+1) 623 330 6048 E-mail:   cika...@gmail.com On Fri, Sep 30, 2011 at 12:17 AM, Mike Mander wrote: > Yeah. It's mystic. I couldn't find any commit to trunk / release

Re: Show feedback message from modal window in parent page

2011-09-30 Thread Dan Retzlaff
Each FeedbackPanel rendered in a response includes all messages generated during that request. The messages are then cleared from the session and won't be included in subsequent responses. Are you closing the modal in a way that immediately generates a second request? Dan On Fri, Sep 30, 2011 at

Show feedback message from modal window in parent page

2011-09-30 Thread heapifyman
Hello, I have a page that contains a list of entries and a modal window opened from that page. The modal window contains a form to add new entries to the list on the parent page. Submitting the form in the modal window adds the new entry, closes the modal window and updates the list of entries in

Re: How to update a palette?

2011-09-30 Thread Wolfgang Schreiner
What do you mean by "refresh"? I apply "setOutputMarkupId" on the palette and add it to the Ajax request target. This is how I thought it should work, apparently I missed something ... final ListModel types = loadChoicesFromDB(); final ListModel selectedTypes = new ListModel(new ArrayList()); fi

Re: RuntimeException when a stateless page throws a 404 which is also handled by wicket

2011-09-30 Thread Bas Gooren
A quick fix was to throw a RestartResponseException which renders our 404 page (which sets the correct headers). However, this seems to go against loose coupling: the product detail page should throw a 404, and not be bothered with the handling of the 404 by the app or appserver. So is there

Re: How to update a palette?

2011-09-30 Thread Duy Do
Did you refresh the pallete after chaning its model? Duy On Fri, Sep 30, 2011 at 3:03 PM, Wolfgang Schreiner wrote: > Dear all, > > I need to create a palette which has to be updated on selection changes in > a drop down choice. The drop down choice contains a list of profiles. Each > profile ha

How to update a palette?

2011-09-30 Thread Wolfgang Schreiner
Dear all, I need to create a palette which has to be updated on selection changes in a drop down choice. The drop down choice contains a list of profiles. Each profile has the same choices but different selected items stored in a database. When a user changes the profile selection (Ajax), the p

Re: [Wicket 1.5.1] Support for SpringBean proxy has gone

2011-09-30 Thread Mike Mander
Yeah. It's mystic. I couldn't find any commit to trunk / release with this change. In Jira issue is really open. But i really used an unpatched 1.5.0 version with SpringBean proxy available. Maybe it was accidently in 1.5.0 :-) I've use as a workaround wicket-spring 1.5.0 with wicket-core exclud

Re: [Wicket 1.5.1] Support for SpringBean proxy has gone

2011-09-30 Thread Martin Grigorov
Since you ask... https://issues.apache.org/jira/browse/WICKET-3936 has never been applied, neither RC, nor 1.5.0, nor 1.5.1 It is still open. I think we should keep all our -ioc implementations in sync. So if this feature is applied for Spring then it should be applied for Guice as well. But I gue