pb to access to this on event onchange on the AutoCompleteTextField

2009-01-04 Thread Olivier Dutrieux
I would like create a component that extends AjaxEditableLabel with replace TextField with AjaxEditableAutoComplete. And I discovert a problem in the wicket-autocomplete.js when the event onchange is rewriting (line 83) : // WICKET-1280 objonchangeoriginal=obj.onchange;

Re: pb to access to this on event onchange on the AutoCompleteTextField

2009-01-05 Thread Olivier Dutrieux
a look at it later today. thanks, gerolf On Sun, Jan 4, 2009 at 6:15 PM, Olivier Dutrieux dutri...@pasteur.frwrote: I would like create a component that extends AjaxEditableLabel with replace TextField with AjaxEditableAutoComplete. And I discovert a problem in the wicket

StatelessForm growing url when there is errorvalidation

2011-02-09 Thread Olivier Dutrieux
Hello, I have a strange problem with statelessForm : I would like a stateless application with 2 statelessForm and with somes required validators on form : public class HomePage extends WebPage { private static final long serialVersionUID = 1L; public HomePage(final

Re: StatelessForm growing url when there is errorvalidation

2011-02-09 Thread Olivier Dutrieux
I already attach on my first post a sample (quickstart) : http://apache-wicket.1842946.n4.nabble.com/file/n3296950/Wicket-test.rar I fill too a jira ticket : https://issues.apache.org/jira/browse/WICKET-3438 Best regards - Duto -- View this message in context:

Re: TextField submit via Ajax

2011-02-10 Thread Olivier Dutrieux
Hello, Just a question : why we can't add Behavior on onsubmit event on form to do that ? - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/TextField-submit-via-Ajax-tp3002094p3298726.html Sent from the Users forum mailing list archive at Nabble.com.

Re: TextField submit via Ajax

2011-02-10 Thread Olivier Dutrieux
I do that to intercept (by submit btn or ENTER key on every components form) the submit form : form.add(new AjaxFormValidatingBehavior(form, onsubmit) { @Override protected void onSubmit(AjaxRequestTarget target) { setResponsePage(ResultPage.class,

Re: Form/Enter Key Problem

2011-02-10 Thread Olivier Dutrieux
My solution is to AjaxFormValidatingBehavior on form : I do that to intercept (by submit btn or ENTER key on every components form) the submit form : form.add(new AjaxFormValidatingBehavior(form, onsubmit) { @Override protected CharSequence getEventHandler() {

Re: Apache Wicket releases Wicket 1.5

2011-09-09 Thread Olivier Dutrieux
very very nice. Thx for all your hard works Best regards Duto - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-releases-Wicket-1-5-tp3797412p3800920.html Sent from the Users forum mailing list archive at Nabble.com.

Re: The Apache Software Foundation Announces Apache Wicket™ 6.0.0

2012-09-06 Thread Olivier Dutrieux
Very very nice, very very greatest job thx Duto - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/The-Apache-Software-Foundation-Announces-Apache-Wicket-6-0-0-tp4651780p4651815.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Free Wicket guide now available!

2013-04-02 Thread Olivier Dutrieux
amazing work, thx Duto - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Free-Wicket-guide-now-available-tp4657407p4657686.html Sent from the Users forum mailing list archive at Nabble.com.

Re: [ANNOUNCE] Wicket JQuery UI 6.11.0 is released

2013-09-28 Thread Olivier Dutrieux
Nice very nice - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/ANNOUNCE-Wicket-JQuery-UI-6-11-0-is-released-tp4661596p4661598.html Sent from the Users forum mailing list archive at Nabble.com.

AjaxFormChoiceComponentUpdatingBehavior with onchange event

2013-09-30 Thread Olivier Dutrieux
Hello all, Is there a way where I can use AjaxFormChoiceComponentUpdatingBehavior with the onchange event (javascript) rather tha onclick ? Because I need only ajax when the group radio change, because with the onclick event, every time I click on the same radio button, the ajax event is fire.

Re: AjaxFormChoiceComponentUpdatingBehavior with onchange event

2013-09-30 Thread Olivier Dutrieux
thx : wicket is so amazing - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AjaxFormChoiceComponentUpdatingBehavior-with-onchange-event-tp4661614p4661618.html Sent from the Users forum mailing list archive at Nabble.com.

Handler after jqXhR success et before ajax response proccess

2013-11-08 Thread Olivier Dutrieux
I use a AjaxCallListener (getBeforeHandler) to execute some javascript before the ajax processing, but I don't find a handler to execute some javascript after jqXHR.success et before the Ajax response is process. Is there a aim ? Duto - Duto -- View this message in context:

Re: Handler after jqXhR success et before ajax response proccess

2013-11-08 Thread Olivier Dutrieux
To simple explain : on before XHRHttpRequest I change some div and want to restore the div before Ajax response is processed because sometime the respond processed update the div and sometime not. and if the ajax response update the div I want to keep it (don't restore it) and if the div is not

Re: Handler after jqXhR success et before ajax response proccess

2013-11-08 Thread Olivier Dutrieux
Is there a aim to execute processAjaxResponse (javascript method to handled the ajax response by wicket-ajax.js) in IAjaxCallListener's success handler if I set wr ajaxAttribute to false ? Duto - Duto -- View this message in context:

Re: Handler after jqXhR success et before ajax response proccess

2013-11-11 Thread Olivier Dutrieux
thx for your response Martin, Maybe a handler in the IAjaxCallListener (between jqXHR.success and Ajax response is process) will be very nice feature in the future version of wicket :) Duto - Duto -- View this message in context:

property media of link css

2013-11-26 Thread Olivier Dutrieux
Media property of link (css) is not set if addResourceReplacement is set on WebApplication.init :I set a css file on page via renderHead(IHeaderResponse response) with screen media :and after if I defined a resourceReplacement on application init :I don't have the property media=screen when

Re: property media of link css

2013-11-26 Thread Olivier Dutrieux
I add a sample of this problem : see attach Sample.rar http://apache-wicket.1842946.n4.nabble.com/file/n4662678/Sample.rar - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/property-media-of-link-css-tp4662677p4662678.html Sent from the Users forum

Wicket atmosphere

2014-05-05 Thread Olivier Dutrieux
Could you please update the wicket-atmosphere with the last release 2.1.4 : I know that this version depend of jquery 2.0.3+ but there is a pure javascript version (no jquery depend) : https://github.com/Atmosphere/atmosphere-javascript And I notice that's your version of TrackMessageSizeFilter

Re: Wicket atmosphere

2014-05-15 Thread Olivier Dutrieux
Hello, I up my question : someone can help me ? Duto On 05/05/2014 23:08, Olivier Dutrieux wrote : Could you please update the wicket-atmosphere with the last release 2.1.4 : I know that this version depend of jquery 2.0.3+ but there is a pure javascript version (no jquery depend) : https

Re: Wicket atmosphere

2014-05-17 Thread Olivier Dutrieux
. Atmosphere and the JS are upgraded on the wicket-6.x and master branches. I've also fixed the filter. https://issues.apache.org/jira/browse/WICKET-5589 Best regards, Emond On Monday 05 May 2014 14:08:20 Olivier Dutrieux wrote: Could you please update the wicket-atmosphere with the last

Re: Wicket atmosphere

2014-05-19 Thread Olivier Dutrieux
I do it : https://issues.apache.org/jira/browse/WICKET-5595 Bet regards Duto Le 19/05/2014 08:57, Papegaaij [via Apache Wicket] a écrit : Could you create a JIRA issue for this, so we (and other users) can track this issue? A short sample is not needed, because I can see in the code that

Change language

2016-12-15 Thread Olivier Dutrieux
I have ajax dropdown list like this : where I can change the language of the application : I use StringResourceModel on class

Re: FormComponentPanel with tag

2016-12-22 Thread Olivier Dutrieux
Hi Martin, Sorry for the problem with the visibility of the code on email :s And you are all rights wicket generate ... not ... : sorry I don't check the raw generated html. Thx for reply. Duto - Duto -- View this message in context:

FormComponentPanel with tag

2016-12-22 Thread Olivier Dutrieux
I discover that if I do : And I attach this composantForm to When wicket render the page I obtain : * I'm surprisely that's a work : I thought for FormComponentPanel.class it's necessary to have a tag like (with open and close tag) : it is normal ? * when I update the

PrependJavaScript to replace a composant with animation

2017-09-30 Thread Olivier DUTRIEUX
Hello, I use the functionnality of prependJavaScript to replace a composant with animation, but I have I a problem when I have two functions (on difference composants), one with normal syntax like this : target.prependJavaScript("$('" + c.getMarkupId() + "').selectpicker('destroy')"); and I

PrependJavaScript to replace à composant with animation

2017-09-30 Thread Olivier Dutrieux
Hello, I use the functionnality of prependJavaScript to replace à composant with animation, but I have I a problem when I have two functions (on difference composants), one with normal syntax like this : and I other one with special syntax for animation : I get a error when wicket evaluate

RE: PrependJavaScript to replace a composant with animation

2017-10-03 Thread Olivier DUTRIEUX
This is a special syntax of wicket : http://wicketinaction.com/2013/02/replace-components-with-animation/ Anybody can't help me ? -- Olivier Dutrieux Groupe Projets (Tél : 31 62) > -Message d'origine- > De : Tobias Soloschenko [mailto:tobiassolosche...@googlemail.com] &g

RE: PrependJavaScript to replace a composant with animation

2017-11-01 Thread Olivier DUTRIEUX
No new about this problem : I need to create a jira issue ? Duto > -Message d'origine- > De : Olivier DUTRIEUX [mailto:olivier.dutri...@pasteur.fr] > Envoyé : samedi 30 septembre 2017 23:21 > À : users@wicket.apache.org > Objet : PrependJavaScript to replace a composant

RE: PrependJavaScript to replace a composant with animation

2017-10-28 Thread Olivier DUTRIEUX
Hello, I have time to check this problem : The problem is that the regexp "scriptWithIdentifierR" tests that the javascript is in form of *start with* "identifier|code" or my javascript don't start with "identifier|code" because is :

setHeaderResponseDecorator and setGatherExtendedBrowserInfo(true)

2019-04-24 Thread Olivier Dutrieux
Hello, I have define on application.init() the setHeaderResponseDecorator (to deferred all javascript to the end of the page) and set setGatherExtendedBrowserInfo to true to retrieve some informations from browser. The problem is when the BrowserInfoPage is render no js is add to the page

RE: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Olivier DUTRIEUX
I check the Improvement [WICKET-6684] on version 8.6.0 but I didn't find any trace of it. Maybe I messed something. Duto -Message d'origine- De : Andrea Del Bene [mailto:adelb...@apache.org] Envoyé : samedi 7 septembre 2019 19:22 À : d...@wicket.apache.org; users@wicket.apache.org;

RE: [ANNOUNCE] Apache Wicket 8.6.0 released

2019-09-09 Thread Olivier DUTRIEUX
Hi Martin, If you check the source https://github.com/apache/wicket/releases/tag/rel%2Fwicket-8.6.0 , you don' t see this line https://github.com/apache/wicket/blob/wicket-8.x/wicket-core/src/main/java/org/apache/wicket/markup/html/form/AutoLabelResolver.java#L106 -- Olivier Dutrieux

Access to initial IRequestHandler on IRequestCycleListener.onException

2020-05-02 Thread Olivier Dutrieux
Is there a possibility to access to initial IRequestHandler (AjaxRequestHandler) on IRequestCycleListener.onException when the exception is due to the rendering exception (Model do RuntimeException) of this ajax request. I see on RequestCycle.get() the initial ajax request but I can access it and

Re: Access to initial IRequestHandler on IRequestCycleListener.onException

2020-05-02 Thread Olivier Dutrieux
Perfect thx - Duto -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: