Create a new component with time

Hi,
I need a component with Hour and minute and days of week and if is possible add to a form like a field.

Any idea?

Thankyou

You can at least construct a server side composite component, this will be fast and won’t require to use gwt and recompile widgetset. as I recall, there was a base component one can extend with own composite widgets to create a new custom field for a form as well.

The
CustomField
server-side add-on is intended to make it easier to implement new fields. It is a CustomComponent that implements the (very large) Field interface, so that the user can simply override one or two relevant methods to set up the layout and handle field value changes.

Unfortunately, I have not had the time to improve it and to document it better - it was extracted from another project and hasn’t changed much since. Feedback is welcome.

This is exactly what we were looking for. There is really lot of methods to implement in the Field interface.