You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by TahitianGabriel <gl...@piti.pf> on 2009/03/24 23:02:15 UTC

Re: Palette and Require Validator

Here's what I do to have the Palette required :

Palette palette = new Palette(...) {
                @Override
                protected Recorder newRecorderComponent() {
                    Recorder rec = super.newRecorderComponent();
                    rec.setRequired(true);
                    return rec;
                }
};


-- 
View this message in context: http://www.nabble.com/Palette-and-Require-Validator-tp16348401p22690814.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org