Re: Session creation with stateless pages in Chrome

2013-05-29 Thread ChambreNoire
That's the problem. Session.bind() isn't called. I put a breakpoin in AbstractHttpSessionStore.bind() but still it's hard to tell what's causing this to be called... -- View this message in context:

Re: ajax submit button not getting latest value

2013-05-29 Thread Martin Grigorov
Hi, The only problem I see is in your scenario. Why do you check the value in #getName() ? This method is called via reflection by CompoundPropertyModel before the model updates (form processing). You should expect the new value in AjaxButton#onSubmit(AjaxRequestTarget, Form). On Wed, May 29,

Re: aj Component twice in markup while ax refresh in Wicket 6.7 (migrated from 1.5.10)

2013-05-29 Thread Nico
I followed Martin's hint and with wicket 6.7.0 I manually changed the replacement in the javascript from jQuery(element).after($newElement).remove(); to jQuery(element).replaceWith($newElement); But I just saw, that in Github

Re: aj Component twice in markup while ax refresh in Wicket 6.7 (migrated from 1.5.10)

2013-05-29 Thread Martin Grigorov
On Wed, May 29, 2013 at 10:18 AM, Nico nico.kan...@gmx.de wrote: I followed Martin's hint and with wicket 6.7.0 I manually changed the replacement in the javascript from jQuery(element).after($newElement).remove(); to jQuery(element).replaceWith($newElement); But I just saw, that in

Re: Re: Re: Re: wicket 6 and a confirm dialog

2013-05-29 Thread Martin Grigorov
Hi, Replace if (!conf) return false; ; with if (!conf) { Wicket.Event.stop(event, true); return false;} ; in JavascriptEventConfirmation.java On Wed, May 29, 2013 at 11:07 AM, Marcel Hoerr marcel.ho...@gmx.de wrote: Hi Martin, i created a simple quickstart (wicket 6) with a Link and an

Re: wicketstuff-jasperreports dependency to jasper reports

2013-05-29 Thread Dieter Tremel
Am 28.05.2013 21:26, schrieb Martin Grigorov: Merged! Danke! May I ask an additional question, not mainly wicket but a maven problem with the wicketstuff core local replicate. When I build the core or subprojects with netbeans 7.3 maven integration it leads today to the following error: Failed

Can WebPage throw Exceptions to be handled by upstream filters in the filter chain?

2013-05-29 Thread Eusie
Hi, I am using Spring OAuth2ClientContextFilter to handle the OAuth Dance. In the thread calling stack, OAuth2ClientContextFilter is in the upstream of WicketFilter (See below the Error Message). When an access token is needed, I'd like to throw an OAuth2AccessTokenRequiredException

Wicket-Bootstrap ControlGroup Error

2013-05-29 Thread David Beer
Hi All I am using a wicket-bootstrap 0.8.2-SNAPSHOT, and wicket 6.7.0. I am trying to create a from and add the components using a ControlGroup. I can add the components to the matching html OK, but I get the following error when the page renders. 12:45:25,905 ERROR

Re: Wicket-Bootstrap ControlGroup Error

2013-05-29 Thread Martin Grigorov
Hi, File a ticket please. Since you use -SNAPSHOT you may have your fix pretty soon ;-) On Wed, May 29, 2013 at 2:55 PM, David Beer david.m.b...@gmail.com wrote: Hi All I am using a wicket-bootstrap 0.8.2-SNAPSHOT, and wicket 6.7.0. I am trying to create a from and add the components using

Re: Can WebPage throw Exceptions to be handled by upstream filters in the filter chain?

2013-05-29 Thread Martin Grigorov
Hi, Wicket catches all runtime exceptions and gives them to all configured IRequestCycleListeners (#onException()). If none of them knows how to process the exception then the exception is given to IExceptionMapper (see Application#newExceptionMapper). The default impl of this mapper is to show

Re: Session creation with stateless pages in Chrome

2013-05-29 Thread Bas Gooren
Hi! Ok, so just to confirm: your original post states that you see a bound wicket session when loading a stateless page with google chrome, but Session.bind() is never called? For as far as I know when wicket binds a sessions it always does so through Session.bind(). So if that is not

Re: Aw: Re: Re: Re: Re: wicket 6 and a confirm dialog

2013-05-29 Thread Sven Meier
Hi Marcel, it seems #stopImmediatePropagation() does not work in jQuery when called from an inline event handler: http://jsfiddle.net/2YUne/ jQuery marks the event as stopped immediately only, without delegating this information to the original event (jQuery.js):

Re: Aw: Re: Re: Re: Re: wicket 6 and a confirm dialog

2013-05-29 Thread Martin Grigorov
On Wed, May 29, 2013 at 4:22 PM, Sven Meier s...@meiers.net wrote: Hi Marcel, it seems #stopImmediatePropagation() does not work in jQuery when called from an inline event handler: http://jsfiddle.net/2YUne/ jQuery marks the event as stopped immediately only, without delegating this

Re: Wicket-Bootstrap ControlGroup Error

2013-05-29 Thread David Beer
Hi Martin Thanks for the reply issues submitted against the github project https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/187 Thanks David On 29/05/13 13:18, Martin Grigorov wrote: Hi, File a ticket please. Since you use -SNAPSHOT you may have your fix pretty soon ;-) On Wed, May

Contract opportunity in Boston area

2013-05-29 Thread Boris Goldowsky
I head the technology/programming group for a small non-profit educational RD organization, CAST (http://www.cast.org). We have an opening for an experienced Wicket between now and September. As a highly collaborative group, we'd be thrilled to find someone local who could be on site in

Re: Very weird problem with modal windows (objects changin in the middle of execution)

2013-05-29 Thread Rafael Barrera Oro
I'm sorry Martin! i did not fully understand what using PageReference meant and i thought i was already using it (it was not my intention to ignore the suggestion), anyway, i tried and also failed (of course, there is the possibility that i used PageReference in a wrong way). I'll try to set up a

Re: ajax submit button not getting latest value

2013-05-29 Thread Taro Fukunaga
Hi Martin, You are right. If I check the value in the onSubmit() method, that value is correct. Taro -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ajax-submit-button-not-getting-latest-value-tp4659121p4659149.html Sent from the Users forum mailing list archive

Problem with disabled DropDownChoice

2013-05-29 Thread dlutowskik
Hello, I have DropDownChoice in my panel. It is used to select the year between 1901 and present year. This dropdown could be disable or enable according to checkbox. If it is enable the value that represent choosen year is saved in database if it is disable null is saved in database. User could

Re: Problem with disabled DropDownChoice

2013-05-29 Thread dlutowskik
Please help -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problem-with-disabled-DropDownChoice-tp4659109p4659124.html Sent from the Users forum mailing list archive at Nabble.com. - To

Re: changing pdf content in Iframe , on item select event

2013-05-29 Thread mayanksahai
i refereed to this example but think wicket is changed a lot . there is no dynamicWebResource class anymore. i think it is replaced by byteArrayResource. this pdf content will be dynamically loaded from jcr repo once filename in the dropDown will be changed. so if user selects file1 from dropdown

Re: changing pdf content in Iframe , on item select event

2013-05-29 Thread Ernesto Reinaldo Barreiro
Voila https://github.com/reiern70/antilia-bits/tree/master/content-iframe On Thu, May 30, 2013 at 6:37 AM, mayanksahai mayanksa...@gmail.com wrote: i refereed to this example but think wicket is changed a lot . there is no dynamicWebResource class anymore. i think it is replaced by