Re: [Wicket-user] DropDownChoice howto change default text

2006-03-08 Thread Dirk Markert
Hi Nino, I think you need a ChoiceRenderer for your DropDownChoice. See javadoc there. Regards, Dirk 2006/3/8, Nino Wael [EMAIL PROTECTED]: Hi How do I change the default text ( "Choose One ", see picture below) of a dropdownchoice, do I need to implement a custom render? I' ve looked at

Re: [Wicket-user] DropDownChoice howto change default text

2006-03-08 Thread Johan Compagner
override getDefaultValue()or use a properties file and define the null value:form.choiceid.null=My Other textAnd that is then a page.properties file that has a form as a child where the choice is in. johanOn 3/8/06, Nino Wael [EMAIL PROTECTED] wrote: Hi How do I change the default text

RE: [Wicket-user] DropDownChoice howto change default text

2006-03-08 Thread Nino Wael
Of Johan Compagner Sent: Wednesday, March 08, 2006 10:16 AM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] DropDownChoice howto change default text override getDefaultValue() or use a properties file and define the null value: form.choiceid.null=My Other text