In JSF, I would like to have a date helper attached to an h:inputText tag. The input text could either be a string or a date. I would just like something that would help the user input a correct date if thats what they are choosing.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
How about |
|||
|
|
|
Do you mean you want a DatePicker widget on your form? If so have a look here: date+time picker for jsf and also here |
|||
|
|
|
If you use tomahawk you could use the inputCalendar. It has a popup that lets you pick the date or you can type into the textbox. |
|||
|
|
|
Take a look at PrimeFaces. They've got a great library of components. Including a date picker (they call it a "calendar") with some pretty nifty options. |
|||
|
|
|
Also you can try jQuery DatePicker, if you are using just JSF and don't want rich, prime or anything else. Usage: Page
Javascript
This will "attach" a calendar icon in your input, as you want. Maybe you will need to use "formId:InpDate" to get it working, but im not sure about this.. |
|||
|