> Can somebody tell me how to use setStyle() with a DatePicker

settings.setStyle(settings.newStyleGreen());

or (completely custom style)

settings.setStyle(new PackageResourceReference(MyDatePicker.class,
"myStyle.css"));

> DatePickerSettings datePickerSetting = new DatePickerSettings();
> datePickerSetting.setAlign("cr");
> add(new DatePicker("dateFieldPicker", dateField, datePickerSetting));
> but this does not work. With this configuration, when I click on the
> icon, the DatePicker is not displayed. If I remove the second line, it
> works.

No idea. Please take a look at what jscalendar does/ expects, as many
fields are just a means to pass values through to that components.
Read about jscalendar here: http://www.dynarch.com/projects/calendar/

> Another problem is to configure the DatePicker in a page which locale is
> switched through an Ajax link. Although the component containing the
> DatePicker receives the response, the locale of the DatePicker is not
> changed. I have to reload the teh page to get it work. Is there a
> solution to have the DatePicker refreshed so its locale is changed ?

Just don't use an ajax link to switch the locale. That's not a super
idea anyway, as you would typically want the the whole page, with all
it's markup etc to reload. Change the switch locale link to a normal
link and all should be good.

Eelco

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to