Thanks a lot Igor. A related question is how do I test a situation like this? The problem I'm running into is that I have them represented by the same model object, so when I want to test the only way I can think to "load" the text box is to retrive the object and set the ModelObjectValue, however, this also changes the value that I'm testing directly, instead of waiting for an event to drive this.
igor.vaynberg wrote: > > wicket allows it > > -igor > > On Tue, Sep 16, 2008 at 5:21 PM, walnutmon <[EMAIL PROTECTED]> > wrote: >> >> can you nest forms in HTML? Seems like that could cause issues... If >> wicket >> allows it that is a great solution! >> >> >> igor.vaynberg wrote: >>> >>> you can put the textarea and the preview link into their own form, >>> that way only the inner form is submitted when you click the preview >>> link. >>> >>> -igor >>> >>> On Tue, Sep 16, 2008 at 1:57 PM, walnutmon <[EMAIL PROTECTED]> >>> wrote: >>>> >>>> All, >>>> >>>> This seems like a simple issue, but I have been stumped for hours... >>>> >>>> Basically I have a form that includes a text area where you can enter >>>> HTML, >>>> to the right of this text area is a "preview" area... I have an >>>> AjaxFallbackLink labeled "preview" which should take the info in the >>>> text >>>> area and render it in HTML. Note that they are both contained in a >>>> panel, >>>> and they are both contained in that panels form... >>>> >>>> When I click preview, nothing happens, which is most likely due to the >>>> fact >>>> that the text area doesn't know to submit it's value to it's model, >>>> which >>>> is >>>> where I pull the value. I have no idea how to get around this problem. >>>> >>>> Now, if I change the link to a SubmitLink, it works fine, but that is >>>> not >>>> what I want because I want a completely different situation to happen >>>> on >>>> submission than when you click preview. I tested to see if the >>>> onSubmit >>>> for >>>> the SubmitLink inadvertantly (in my eyes) calls the forms submit, and >>>> it >>>> does. >>>> >>>> Thanks in advance! >>>> -- >>>> View this message in context: >>>> http://www.nabble.com/Having-trouble-with-ajax-link-tp19520249p19520249.html >>>> Sent from the Wicket - User mailing list archive at Nabble.com. >>>> >>>> >>>> --------------------------------------------------------------------- >>>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>>> For additional commands, e-mail: [EMAIL PROTECTED] >>>> >>>> >>> >>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [EMAIL PROTECTED] >>> For additional commands, e-mail: [EMAIL PROTECTED] >>> >>> >>> >> >> -- >> View this message in context: >> http://www.nabble.com/Having-trouble-with-ajax-link-tp19520249p19523261.html >> Sent from the Wicket - User mailing list archive at Nabble.com. >> >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > > -- View this message in context: http://www.nabble.com/Having-trouble-with-ajax-link-tp19520249p19523991.html Sent from the Wicket - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
