Re: add id to body with onComponentTag?

2009-06-30 Thread Marieke Vandamme
Hello, Thanks for the answer, but that's not what I want. As I specified in my first post: I don't want to add a wicket:id to the body, because then I have to add all components for my ChildPage's to that bodyComponent (that is on the parent). Thanks again for any help! igor.vaynberg wrote:

Re: add id to body with onComponentTag?

2009-06-30 Thread Marieke Vandamme
Sorry, my bad. I didn't see the overriding of 'isTransparentResolver'. I didn't know that existed. Thanks a lot! Marieke Vandamme wrote: Hello, Thanks for the answer, but that's not what I want. As I specified in my first post: I don't want to add a wicket:id to the body, because

Re: Submit form with ajax on enter

2009-06-30 Thread Emanuele Gesuato
Why not using AjaxFormSubmitBehavior ? vineet semwal wrote: you can use AjaxButton,AjaxFallbackButton,IndicatingAjaxButton. regards, Vineet Semwal On Thu, Jun 25, 2009 at 9:47 AM, John Patterson jdpatter...@gmail.comwrote: Hi, I have a single text box which I wan to be submitted by ajax

ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread Thijs
I have the following setup: * Page mounted using a HybridUrlCodingStrategy * AjaxLink * And an anchor to jump to a certain section of page. When I jump to a section of the page using the anchor and then try to use the ajaxlink the page is not found. I've traced it down to IE6 appending the

London Wicket Drink - tomorrow (Wednesday) evening

2009-06-30 Thread jWeekend
A few of us are getting together for a London Wicket Drink tomorrow evening. We'll be stating at the at The Old Thamesside Inn [1] at 19:00. Regards - Cemal jWeekend OO Java Technologies http://jWeekend.com [1] http://www.beerintheevening.com/pubs/s/43/432/Old_Thameside_Inn/London_Bridge

Re: Localization message for validators

2009-06-30 Thread Major Péter
done: https://issues.apache.org/jira/browse/WICKET-2350 2009-06-30 02:32 keltezéssel, Igor Vaynberg írta: open a jira issue with a quickstart attached. -igor 2009/6/29 Major Pétermajorpe...@sch.bme.hu: Hi all, I have recently upgraded my application to wicket 1.4-rc5, and now I have some

Re: How to turn ModalWindow form into multipart form?

2009-06-30 Thread Vladimir K
Eyal, did you mean you have patched wicket.jar with modal.js on your own? I'm going to omit patching wicket.jar. We'll replace ModalWindow with regular page for a while. I don't understand why ModalWindow hasn't been implemented with regular wicket ajax engine. It would be easier to fix

Re: ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread Igor Vaynberg
do we still have to wreck our brains thinking about how to support a browser released in 2001? -igor On Tue, Jun 30, 2009 at 2:16 AM, Thijsvonk.th...@gmail.com wrote: I have the following setup: * Page mounted using a HybridUrlCodingStrategy * AjaxLink * And an anchor to jump to a certain

Re: ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread Per Lundholm
No. ;-) /Per On Tue, Jun 30, 2009 at 5:02 PM, Igor Vaynbergigor.vaynb...@gmail.com wrote: do we still have to wreck our brains thinking about how to support a browser released in 2001? -igor On Tue, Jun 30, 2009 at 2:16 AM, Thijsvonk.th...@gmail.com wrote: I have the following setup: *

Re: ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread mailingl...@jorgenpersson.se
For what my 2 cents are worth, I think browser support should be based on the popularity, not release date, of the browser. If I were to run a business, and was chosing between web frameworks, I certainly would not want to a quarter of my potential customers to have problem viewing my

Re: Exceptions after Tomcat restart

2009-06-30 Thread Gwyn Evans
I've not explictly checked, but I seem to recall something in the forthcoming RC6 release notes that sounded as if it addressed that issue... /Gwyn On Tue, Jun 30, 2009 at 1:03 AM, niaoulimickae...@gmail.com wrote: Hi, I have quite the same problem using Eclipse WTP and Tomcat : a

ajaxformcomponent

2009-06-30 Thread Stefan Malmesjö
Hi, I'm playing around with validation and ajax, and can't quite seem to do what I want. The goal is to have a checkbox toggle enabled/disabled depending on whether the user has entered a valid email address. So, my simple test looks like this: -- final TextFieldString

Re: Exceptions after Tomcat restart

2009-06-30 Thread Jeremy Thomerson
Igor fixed it: https://issues.apache.org/jira/browse/WICKET-2334 -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jun 30, 2009 at 11:10 AM, Gwyn Evansgwyn.ev...@gmail.com wrote: I've not explictly checked, but I seem to recall something in the forthcoming RC6 release notes that

Re: ajaxformcomponent

2009-06-30 Thread Stefan Malmesjö
The subject should have been AjaxFormComponentUpdatingBehavior... sorry about that :-[ On 2009-06-30 18:12, Stefan Malmesjö wrote: Hi, I'm playing around with validation and ajax, and can't quite seem to do what I want. The goal is to have a checkbox toggle enabled/disabled depending on

Re: How to turn ModalWindow form into multipart form?

2009-06-30 Thread Eyal Golan
Vladimir, no. We didn't patched wicket.jar. We have overridden ModalWindow: Say you call it AbstractCustomModalWindow I force the user to use it with Page: setPageCreator(new ModalWindow.PageCreator() { private static final long serialVersionUID = 1L; public Page

Re: localizer and variables

2009-06-30 Thread OjO
Thanks so much for all the responses, the internal-externalized issue is clear now! Now, the still unclear issue - when using a RepeatingView or a ListView to create a list of links conditionally in a tool bar panel with their title attributes and link labels in the i18n properties file, using

help with ListMultipleChoice and ajax tab

2009-06-30 Thread Eyal Golan
Hi, I have a tab panel that has two tabs. The tabs are Ajaxified using some examples I found here and in the web. Basically in the tab panel we did this: @Override protected WebMarkupContainer newLink(String linkId, final int index) { final WebMarkupContainer c = new

Re: ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread Per Lundholm
Well, of course, you should know your users, I was joking. Still, a rumour told me that Aftonbladet.se, a major newspaper site in Sweden, is advising IE6 users to switch to something newer. On top of their suggestion, FireFox. /Per On Tue, Jun 30, 2009 at 5:59 PM,

Re: ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread Thijs
He, I'm on your side. And I think the designer is even more. However the customer isn't :( They still have a 25 - 30% IE6 user base. And with the system we're building that is a LOT of money... If you don't want to fix it, where would I have look to fix it my self? In

Re: invoking an ajax refresh

2009-06-30 Thread Erik van Oosten
Hi Daniel, Please investigate AjaxSelfUpdatingTimerBehavior. I have never used it myself so I can not help you further then that. Regards, Erik. Daniel Dominik Holúbek wrote: hello everybody,i am wondering how to invoke refresh of a component with ajax. the situation: i have a listener

Re: ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread Igor Vaynberg
you could just wrap a filter around wicket filter and remove any #foo values from the end of a url. -igor On Tue, Jun 30, 2009 at 12:19 PM, Thijsvonk.th...@gmail.com wrote: He,  I'm on your side. And I think the designer is even more. However the customer isn't :( They still have a 25 - 30%

Re: ie6 HybridUrlCodingStrategy using ajax and an anchor results in a 404

2009-06-30 Thread Mathias Nilsson
http://www.bringdownie6.com/ http://www.bringdownie6.com/ -- View this message in context: http://www.nabble.com/ie6---HybridUrlCodingStrategy-using-ajax-and-an-anchor-results-in-a-404-tp24268734p24277834.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: invoking an ajax refresh

2009-06-30 Thread Mathias Nilsson
maybe new AjaxSelfUpdatingTimerBehavior( Duration.seconds(2) ){ private static final long serialVersionUID = 1L; protected void onPostProcessTarget(AjaxRequestTarget target){ // Add new feed back message target.addComponent( ); } }; -- View this message in context:

Re: inmethod datagrid with a DropDownChoice cell

2009-06-30 Thread jsinger66
Hi Have either of you solved this issue? You need to add the model to the new DropDownChoice Solution: public DropDownPanel(String id, final IModel model, IModel rowModel, AbstractColumn column, final List data, final ChoiceRenderer renderer) { super(id, column, rowModel);

Re: Submit form with ajax on enter

2009-06-30 Thread John Patterson
It is being used indirectly through AjaxButton. Unfortunately AjaxFormSubmitBehavior cannot be used directly on the form to listen for onsubmit Emanuele Gesuato-2 wrote: Why not using AjaxFormSubmitBehavior ? -- View this message in context:

Re: help with ListMultipleChoice and ajax tab

2009-06-30 Thread Ernesto Reinaldo Barreiro
I see two possible solutions... 1- Replace AYAX link with an AJAX submit link, so switching tabs will do a submit of your selected choices. 2- Have visual tabs where both tabs are rendered at the same time and switching between them is just hiding/showing them via JavaScript. That way no data is