I’d like to do this:
Date meetingDateAndTime;
<h:inputText value="Date"/>
<h:inputText value="Time"/>
Once I got only one attribute Date, is it possible to type Date in an inputText and type Time into another and then merge them together?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use two
DateFormats, one that outputs the Date and one that outputs the Time.SimpleDateFormat
Edit: Sorry, I thought you were trying to write two fields from one date not create one date from two fields. What about the following: