Re: Add a * (star) to a mandatory field

2008-09-17 Thread Eyal Golan
Igor, Thanks :-) I feel so dumb ... Anyway, I've broaden my knowledge with the Border issue. Which is good I guess. On Wed, Sep 17, 2008 at 5:31 PM, Igor Vaynberg <[EMAIL PROTECTED]>wrote: > you are adding the behavior to the textfield, not to your label. so it > is rendered properly - before th

Re: Add a * (star) to a mandatory field

2008-09-17 Thread Igor Vaynberg
you are adding the behavior to the textfield, not to your label. so it is rendered properly - before the input tag. -igor On Wed, Sep 17, 2008 at 1:04 AM, Eyal Golan <[EMAIL PROTECTED]> wrote: > Igor, > Here's the generated source: > > for="userId2">Password >

Re: Add a * (star) to a mandatory field

2008-09-17 Thread Igor Vaynberg
i said look into icomponentborder, not border... -igor On Wed, Sep 17, 2008 at 5:57 AM, Eyal Golan <[EMAIL PROTECTED]> wrote: > I've just looked into this and there is the MyBorder in the source. > It may be more useful if it as on page. > > OK, so will use this, but still, I think that there's s

Re: Add a * (star) to a mandatory field

2008-09-17 Thread Eyal Golan
I've just looked into this and there is the MyBorder in the source. It may be more useful if it as on page. OK, so will use this, but still, I think that there's something wrong with beforeRender(), the star is added after the component. Or am I missing something? On Wed, Sep 17, 2008 at 3:27 PM,

Re: Add a * (star) to a mandatory field

2008-09-17 Thread jWeekend
That example would be even more useful if it included the border's html in its "Behind he Scenes section: MyBorder.html (hopefully not too badly mangled by Nabble or your mail client) ... before the border contents after the border contents ... Regards -

Re: Add a * (star) to a mandatory field

2008-09-17 Thread James Perry
Have a look at this link as it's provides an excellent example: http://wicketstuff.org/wicket13/compref/?wicket:bookmarkablePage=:org.apache.wicket.examples.compref.BorderPage Best, James. On Wed, Sep 17, 2008 at 9:42 AM, Eyal Golan <[EMAIL PROTECTED]> wrote: > Igor, James, > Could you please g

Re: Add a * (star) to a mandatory field

2008-09-17 Thread Eyal Golan
Igor, James, Could you please give a short example of what you mean by using a Border? I haven't used this component yet, and another example, beside what there is in the site will be welcome On Tue, Sep 16, 2008 at 5:43 PM, Igor Vaynberg <[EMAIL PROTECTED]>wrote: > we use componentborder to do

Re: Add a * (star) to a mandatory field

2008-09-17 Thread Eyal Golan
Igor, Here's the generated source: Password * And here's the Java code: TextField passField = new PasswordTextField("password", new PropertyModel(this, "password")); passField.add(new MandatoryB

Re: Add a * (star) to a mandatory field

2008-09-16 Thread Daan van Etten
Or you can check my solution here: http://stuq.nl/weblog/2008-09-03/user-friendly-form-validation-with-wicket Example form: http://stuq.nl/media/image/form-usability-tutorial-invalid.png (You can easily change the look and feel, this is just an example) Regards, Daan On 16 sep 2008, at 16:54,

Re: Add a * (star) to a mandatory field

2008-09-16 Thread Ryan Gravener
There is always shinyforms. http://code.google.com/p/elephas/source/browse/#svn/trunk/src/main/java/org/elephas/webapp/frontend/component/common/form On Tue, Sep 16, 2008 at 10:43 AM, Igor Vaynberg <[EMAIL PROTECTED]>wrote: > we use componentborder to do this, works like a charm. still it is > i

Re: Add a * (star) to a mandatory field

2008-09-16 Thread Igor Vaynberg
we use componentborder to do this, works like a charm. still it is interesting that the * is output before, are you sure its not your css, can you check the generated source? -igor On Tue, Sep 16, 2008 at 6:23 AM, James Perry <[EMAIL PROTECTED]> wrote: > I too recently had a use case where the cu

Re: Add a * (star) to a mandatory field

2008-09-16 Thread James Perry
I too recently had a use case where the customer wanted a '*' to represent a mandatory field. IMO, using a border is more subtle and tidier then your approach. On Tue, Sep 16, 2008 at 12:40 PM, Eyal Golan <[EMAIL PROTECTED]> wrote: > Hi, > I created this behavior for adding a star BEFORE the compo