Wicket calendar

I would like to have a small short calendar at the gate. DatePicker is a component that has a textField, and the calendar is displayed for a short period of time until you select a date. But I need a permanent calendar, as in Outlook. Wicket FullCalendar is very big for me, I need datePicker format. Is there such a component or not?

+4
source share
3 answers

I do not think that for this there is a ready-made component in the main gate. But it should be pretty easy to collapse. Here are some ideas for this:

  • Take the DatePicker and extract the calendar from it (note that DatePicker uses the YUI internally).
  • Check out the WijCalendar component from the WiQuery project
  • just visualize the values ​​as a table, apply CSS and let jQuery Themeroller go.
+3
source

Recently, I also need such a calendar widget. But could not find. Wicket calendar selection is based on the YUI component . Despite the fact that the basic component supports the built-in display, I could not find a single parameter for choosing the date of the gate that launches this mode.

Finally, I came up with a simple component to write. It uses a jQueryUI calendar widget .

+1
source

Take a look also at the web project. It is written in Wicket and has what you need in its GUI: http://code.google.com/p/webical/wiki/Screenshots

+1
source

All Articles