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?
|
|
|
You could use two
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:
|
|||||||||
|
|
I hope you know that most of the methods (and constructors) in the java.util.Date class are deprecated, so I suggest you to use the java.util.GregorianCalendar instead. Try this:
Here's the backing bean:
As you can see, I'm merging the date info from the one Date object with the time info from the other Date object. The merged data is stored in the fullMeetingDateTimeInfo property. So, in further you have to work with the fullMeetingDateTimeInfo property if you'd like to have the complete meeting-time info merged in one object. Good luck ! Konstantin |
||||
|
|
|
try this:
doh, I misunderstood the question :o) |
|||
|