Combining TimeItem and DateItem Values
I need to match time value for TimeItem and date value from DateItem in smartgwt. As a result, I want the date object for java.util.Date.I to try to combine the two. I couldn't do it.
Sample code:
DateItem date=new DateItem();
TimeItem time=new TimeItem();
DynamicForm form=new DynamicForm();
form.setFields(date,time);
// java.util.Date selectedDate= ? Here I need the output
Can anyone help with this? thanks
+1
a source to share