Re: Animating the opening of a modal window

2010-07-06 Thread Ernesto Reinaldo Barreiro
WiQuery provides a nice Java Interface for using effects. You can see them in action here. http://wiquery-plugins-demo.appspot.com/demo/?wicket:bookmarkablePage=:com.wiquery.plugins.demo.EffectsPage Ernesto On Tue, Jul 6, 2010 at 7:53 AM, Anh 7za...@gmail.com wrote: Please disregard my last

Re: Single inheritence in parts

2010-07-06 Thread Ernesto Reinaldo Barreiro
I meant wish list. Mornings after a sleepless night are not easy... Ernesto On Tue, Jul 6, 2010 at 7:53 AM, Ernesto Reinaldo Barreiro reier...@gmail.com wrote: Hi Jeremy, Wasn't this on the which list for 1.5? [1] and [2]? Cheers, Ernesto

Re: Displaying labels instead of field keynames in error messages

2010-07-06 Thread Sigmar Muuga
Thanks, it works. On Tue, Jul 6, 2010 at 8:25 AM, Jeremy Thomerson jer...@wickettraining.comwrote: No, don't rename. Call setLabel on the component. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jul 6, 2010 12:11 AM, Martin Makundi

Re: Single inheritence in parts

2010-07-06 Thread Erik van Oosten
Yes, this has been promised many times. And I am looking forward to it :) Regards, Erik. Op 06-07-10 07:53, Ernesto Reinaldo Barreiro wrote: Hi Jeremy, Wasn't this on the which list for 1.5? [1] and [2]? Cheers, Ernesto

Re: TinyMCE Editor with AJAX

2010-07-06 Thread Manfred Bergmann
Hello. I have tried your suggestion but it doesn't seem to solve the issue. I use a OnChangeAjaxBehavior instead of a AjaxFormComponentUpdatingBehavior as the OP. Any other ideas how to get Ajax onchange events back? Regards, Manfred -- View this message in context:

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread David Chang
In Spring framework, there is a concept called HTML escape. Does Wicket have sometihng similar? Thanks. --- On Tue, 7/6/10, Jeremy Thomerson jer...@wickettraining.com wrote: From: Jeremy Thomerson jer...@wickettraining.com Subject: Re: Configure Wicket to detect some special HTML

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread Martin Makundi
In Spring framework, there is a concept called HTML escape. Does Wicket have sometihng similar? Strings.escape However, I suspect you are trying to solve wrong problem. Html should be escaped upon display not upon storage. ** Martin --- On Tue, 7/6/10, Jeremy Thomerson

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread Pedro Santos
Hi David, there are a lot of methods that escape the characters, for instance you can use org.apache.wicket.util.string.Strings.escapeMarkup method. But they make sense when you are writing an xml, like the page returned to browser. On Tue, Jul 6, 2010 at 9:08 AM, David Chang

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread David Chang
Martin, thanks so much for your attention on this question. You are right, it is should be done on display, not on storage. Best, David --- On Tue, 7/6/10, Martin Makundi martin.maku...@koodaripalvelut.com wrote: From: Martin Makundi martin.maku...@koodaripalvelut.com Subject: Re: Configure

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread David Chang
Can Wicket be configured to do this html escape without requiring a programmer to manually write calls to Strings#escapeMarkup? --- On Tue, 7/6/10, Pedro Santos pedros...@gmail.com wrote: From: Pedro Santos pedros...@gmail.com Subject: Re: Configure Wicket to detect some special HTML

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread Martijn Dashorst
Have you tried it? Martijn On Tue, Jul 6, 2010 at 3:26 PM, David Chang david_q_zh...@yahoo.com wrote: Can Wicket be configured to do this html escape without requiring a programmer to manually write calls to Strings#escapeMarkup? --- On Tue, 7/6/10, Pedro Santos pedros...@gmail.com wrote:

non-bookmarkable pages with pageparameters?

2010-07-06 Thread Muro Copenhagen
Hi I have a page that is session based(nonbookmarkable) but at the same time i want to make sure a request parameter is shown in the url... How would i achieve that ? This is what i am trying to achieve, with example from my code: My page code constructors: public DeliverySecure() {

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread Jeremy Thomerson
A label automatically escapes markup. It would take you about one minute to try this on an app you have. That would have saved you (and us) a lot of emails. Just give it a try. Jeremy Thomerson -- sent from my smartphone - please excuse formatting and spelling errors On Jul 6, 2010 8:27 AM,

Re: non-bookmarkable pages with pageparameters?

2010-07-06 Thread Erik van Oosten
Hi Muro, Mount your page with a HybridUrlCodingStrategy. For example the MixedParamHybridUrlCodingStrategy. Regards, Erik. Op 06-07-10 15:30, Muro Copenhagen wrote: Hi I have a page that is session based(nonbookmarkable) but at the same time i want to make sure a request parameter is

Re: non-bookmarkable pages with pageparameters?

2010-07-06 Thread Muro Copenhagen
Hi Erik, I tried that with no luck... How would i do this: setResponsePage(new DeliverySecure(deliveryInfo)), and at the same time send pageparameters to the same page? Best Regards Muro On Tue, Jul 6, 2010 at 4:10 PM, Erik van Oosten e.vanoos...@grons.nlwrote: Hi Muro, Mount your page

Re: Refreshing DataView fails if it was initially empty

2010-07-06 Thread shetc
Hi vov, thanks for your reply. I discovered that function last week but nabble was not allowing me to reply at the time. It was a good idea to go back and read the API docs. -- View this message in context:

Re: TinyMCE Editor with AJAX

2010-07-06 Thread Manfred Bergmann
It looks like as if the 'blur' event never is called. When changed to 'keyup' the event handler is called. Further RichTextField_instance doesn't seem to have a 'formElement' anymore. Therefore according to the TinyMCE APIs the underlying textarea can be retrieved via

ModalWindow - Question

2010-07-06 Thread Alis
Hello! i´m done a ModalWindow the question, where it's show two button: yes / no. When the user do click the button, i done a close the ModalWindow and have a error. Help me! AjaxButton yesB= new AjaxButton(YesButton){ public void onSubmit(AjaxRequestTarget target, Form form){

Re: ModalWindow - Question

2010-07-06 Thread Martin Makundi
why not use close(target)? ** Martin 2010/7/6 Alis ajcalve...@yahoo.es: Hello! i´m done a ModalWindow the question, where it's show two button: yes / no. When the user do click the button,  i done a close the ModalWindow and have a error. Help me!  AjaxButton yesB= new

Re: Single inheritence in parts

2010-07-06 Thread Arjun Dhar
cool ..something to look forward to (in response to other posts) FYI I tried panel it requires some code to be written, not very clean. (opposed pure markup based approach) On a last note; ..am confusedmultiple inheritance generally means MANY PARENT, ONE CHILD (child inherits from multiple

Re: Single inheritence in parts

2010-07-06 Thread Jeremy Thomerson
On Tue, Jul 6, 2010 at 4:38 AM, Erik van Oosten e.vanoos...@grons.nlwrote: Yes, this has been promised many times. And I am looking forward to it :) Regards, Erik. Op 06-07-10 07:53, Ernesto Reinaldo Barreiro wrote: Hi Jeremy, Wasn't this on the which list for 1.5? [1] and [2]?

Re: Page maps problem

2010-07-06 Thread Branislav Kalas
Thanks, when i turned off automaticMultiWindow support and set page map name manually for modal window, page map for modal window was removed after modal window close. Now i am trying to figure out some way to removing page map after close page opened in new tab or in new browser window. After

Re: DiskPageStore - FileNotFoundException

2010-07-06 Thread FarhanS
I just noticed the same error in our production, did you find out what was the cause of the problem? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/DiskPageStore-FileNotFoundException-tp1867585p2280260.html Sent from the Wicket - User mailing list archive at

how to distinguish browser's tab?

2010-07-06 Thread Fernando Wermus
Hi all, I have a site which works in facebook, as an facebook ap, as well as stand alone. the styling is the only thing that changes between these two versions. Some days ago, I found a bug that I don't know how to solve. If a user logins in facebook an uses my facebook app and later he

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread David Chang
Jeremy, thanks for the advice, which is indeed correct. I tried it and it the default behavior for labels. I do have annother related question. I read Component API, which Label and other components inherit, and notice that it has a method: public final Component

Dropdownchoice selection to trigger change of form

2010-07-06 Thread goody44
Hi, I would of thought that this would be fairly basic to figure out but I just can't get it to work. I have a dropdownchoice in one form and then another form below it. Based on the selection of the dropdown I want the contents of the other form to change. I have an ajax listener that add the

RE: Dropdownchoice selection to trigger change of form

2010-07-06 Thread Russell Simpkins
I think you are neglecting to do any changes in your onupdate() method. When onupdate is called, the user should have selected a vehicle, which would populate selectedVehicle - you need to then populate your other dropdown menu or whatever else you wanted to populate before you addOrReplace to

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread Igor Vaynberg
there is no system-wide setting to disable this because doing so opens a bunch of security holes. -igor On Tue, Jul 6, 2010 at 6:30 PM, David Chang david_q_zh...@yahoo.com wrote: Jeremy, thanks for the advice, which is indeed correct. I tried it and it the default behavior for labels. I do

Re: Configure Wicket to detect some special HTML characters?

2010-07-06 Thread David Chang
igor, thanks for chiming in. rgards. --- On Tue, 7/6/10, Igor Vaynberg igor.vaynb...@gmail.com wrote: From: Igor Vaynberg igor.vaynb...@gmail.com Subject: Re: Configure Wicket to detect some special HTML characters? To: users@wicket.apache.org Date: Tuesday, July 6, 2010, 10:18 PM there

RE: Dropdownchoice selection to trigger change of form

2010-07-06 Thread goody44
Thanks for your reply. I tried what you said plus a lot of variation but haven't got it to work yet. Using the ajax debugger I noticed that the panel is getting rerendered but not with the new data. Could be a problem with my models. How would you do it if you had a child panel that has a nested

Re: Dropdownchoice selection to trigger change of form

2010-07-06 Thread Martin Makundi
First of all.. I would not use vehicleIndex. Take that away. ** Martin 2010/7/7 goody44 matt...@spidertracks.co.nz: Thanks for your reply. I tried what you said plus a lot of variation but haven't got it to work yet. Using the ajax debugger I noticed that the panel is getting rerendered but