Are there any tutorials available for registering custom editors ? I need to use it to map the input string to java.util.Date.
Thanks,
Kartik
Are there any tutorials available for registering custom editors ? I need to use it to map the input string to java.util.Date.
Thanks,
Kartik
Have a look at the reference. Registering property editors is covered quite detailed there.
Regards,
Andreas
As Andreas said, the registering of custom editors is discussed here, but if you have a read you'll see there is already a Date editor. It's just no registered by default.
CustomDateEditor
Customizable property editor for java.util.Date, supporting a custom DateFormat. NOT registered by default. Must be user registered as needed with appropriate format.