Re: [Wicket-user] OnChangeAjaxBehavior and Repeater issue on FireFox

2007-07-30 Thread Flavius
Ah! That fixed it. Thank you, kind sir! igor.vaynberg wrote: > > try changing > > > > to > > > > you shouldnt nest block elements (table/div) in inline elements. > > -igor > > > > On 7/30/07, Flavius <[EMAIL PROTECTED]> wrote

[Wicket-user] OnChangeAjaxBehavior and Repeater issue on FireFox

2007-07-30 Thread Flavius
Greetings. I have a page that uses the new OnChangeAjaxBehavior. When values are typed into the text field, it updates a RepeaterView. It works with the first key press but, almost always, it doesn't fire the onUpdate() event on subsequent key presses, but only on FireFox (I'm using 2.0.0.5).

Re: [Wicket-user] setVisible on Fragment with AjaxFormComponentUpdatingBehavior

2007-05-23 Thread Flavius
Btw, I am running wicket 1.2.6 on Tomcat 6. Johan Compagner wrote: > > can a span have other block elements? > try to make the span a div > > johan > > > On 5/23/07, Flavius <[EMAIL PROTECTED]> wrote: >> >> >> The fragment contents appear fin

Re: [Wicket-user] setVisible on Fragment with AjaxFormComponentUpdatingBehavior

2007-05-23 Thread Flavius
I didn't think about that. However, I changed the spans to divs and still the same result. :-( I put a new build out at the same urls. Johan Compagner wrote: > > can a span have other block elements? > try to make the span a div > > johan > > > On 5/23/

Re: [Wicket-user] setVisible on Fragment with AjaxFormComponentUpdatingBehavior

2007-05-23 Thread Flavius
in the fragment doesnt disappear? looking at the ajax code we > see an empty component comming up. I guess the ajax console is saying > exatly the same stuff when you do it for the textfield? > > On 5/23/07, Flavius <[EMAIL PROTECTED]> wrote: >> >> >> There are

Re: [Wicket-user] setVisible on Fragment with AjaxFormComponentUpdatingBehavior

2007-05-23 Thread Flavius
Timo Rantalaiho wrote: > > On Tue, 22 May 2007, Flavius wrote: >> I am trying to setVisible on a Fragment using the >> AjaxFormComponentUpdatingBehavior object. >> It doesn't seem to work. I've also tried this with a Panel and that's >> not >> wo

[Wicket-user] setVisible on Fragment with AjaxFormComponentUpdatingBehavior

2007-05-22 Thread Flavius
I am trying to setVisible on a Fragment using the AjaxFormComponentUpdatingBehavior object. It doesn't seem to work. I've also tried this with a Panel and that's not working either. However, if I use a component, like a TextField, that works. In my java, this is the pertinent code for my Form:

Re: [Wicket-user] Receive event when user navigates away from current page

2007-05-21 Thread Flavius
e your friend > > However, don't depend on this behavior to be a failsafe: kill -9 will > not trigger the body onunload in the browser, or a power failure on > the client side, or a BSOD, or ... > > Martijn > > On 5/18/07, Flavius <[EMAIL PROTECTED]> wrote:

[Wicket-user] Receive event when user navigates away from current page

2007-05-18 Thread Flavius
I would like to receive an event when the user tries to navigate away from the current page. So if the user is on the page and navigates to any other page, closes the window, etc., I'll get an event. I have a page that allows the user to upload files to a record. I store the physical file in a

Re: [Wicket-user] ajax libraries & wicket

2007-04-22 Thread Flavius
Is the DatesComparatorValidator object something you wrote or is that something coming in wicket 1.3? -- View this message in context: http://www.nabble.com/-Wicket-user--ajax-libraries---wicket-tf3191437.html#a10129826 Sent from the Wicket - User mailing list archive at Nabble.com. ---

Re: [Wicket-user] DropDownChoice binding question

2006-12-31 Thread Flavius
ok, I see where you're going with this. very cool. My enum is in a helper class and I started writing conversion methods in the helper class. But I like the way you wrapped your conversion methods in a class to use on the Page class. I also gave some thought last night to using a Map with the

Re: [Wicket-user] DropDownChoice binding question

2006-12-30 Thread Flavius
I tried this: DropDownChoice severityChoice = new DropDownChoice("size", Arrays.asList(SIZE.values()), new ChoiceRenderer() { public Object getD

[Wicket-user] DropDownChoice binding question

2006-12-30 Thread Flavius
Greetings, I am trying to take the value (only) of a DropDownChoice and put it in a model set on the Form. Ideally, I'd like to use a (java 5) enum, but any type of name value pair will work. For example, if I'm trying to set the size of a Shirt class, here is my Shirt, and a sample enum:

Re: [Wicket-user] Wicket 1.2.2 home page loads twice

2006-10-26 Thread Flavius
I found the issue. I'm putting the images in for the home page. One tag didn't have an entry for the src, like http://www.nabble.com/Wicket-1.2.2-home-page-loads-twice-tf2515875.html#a7022847 Sent from the Wicket - User mailing list archive at Nabble.com.

[Wicket-user] Wicket 1.2.2 home page loads twice

2006-10-26 Thread Flavius
I'm new with wicket and started a vanilla project. I created my application class which extends WebApplication and defined a home page called Home.java (and Home.html). When I nav to the root of the app, it successfully takes me to the home page. But the app loads that page twice. I am determi