How to add datetimepiker in GWT

2011-02-03 Thread sujit mishra
Hi , I need help regards datetimepicke widget . I am using GWT but not found any widget that able to capture date and time both at a time from user. So , please help me how to add datetimepicke using GWT Thanks Sujit Mishra -- You received this message because you are

Re: How to add datetimepiker in GWT

2011-02-03 Thread Ben Imp
As far as I am aware, there is no such widget. You will have to make one. -Ben On Feb 3, 3:24 am, sujit mishra sujit.u...@gmail.com wrote: Hi ,      I need help regards datetimepicke widget . I am using GWT but not found any widget that able to capture date and time both at a      time  

Re: How to add datetimepiker in GWT

2011-02-03 Thread Jeff Schwartz
Using UiBinder in some ui.xml file: ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder xmlns:g=urn:import:com.google.gwt.user.client.ui xmlns:dp=urn:import:com.google.gwt.user.datepicker.client ... table id=inputTable tr tdg:Label

Re: How to add datetimepiker in GWT

2011-02-03 Thread Ben Imp
I think you missed the bit about capturing the time portion as well. -Ben On Feb 3, 8:47 am, Jeff Schwartz jefftschwa...@gmail.com wrote: Using UiBinder in some ui.xml file: ui:UiBinder xmlns:ui=urn:ui:com.google.gwt.uibinder     xmlns:g=urn:import:com.google.gwt.user.client.ui    

Re: How to add datetimepiker in GWT

2011-02-03 Thread Jeff Schwartz
I haven't tested it but DatePicker's getValue method returns a Date object. What I am not sure of is if the Date object reflects the current time when a user selects a date from the calendar. The returned Date's getTime() method needs to be tested to see if it does or doesn't. Jeff On Thu, Feb