Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a UI widget for GWT that will allow a date range to be selected, preferably disallowing future dates. Having two date pickers isn't terribly user friendly, but I haven't seen anything better out there.

One like this would be great: https://demo.reztrip.com/

share|improve this question

3 Answers

GWT by default has no such widget. There are only few relevant libraries to explore to pick of ideas -

Sencha ( GWT based widgets )
Vaadin ( GWT based widgets )
SmartGWT ( GWT JSNI wrappers on js widgets )
Jquery/GwtQuery plugin - ( GWT rewrite of JQuery, You would probably need to do plugin port)

I have not found any third party open source libs with Serious User Interaction Design that stands out.

That leaves you to design your own widget. You can start by looking up Google Analytics, Google Flight and other Google's GWT based products.

share|improve this answer

You can create a popup for creating the interval. At first click, use is asked to choose a date and remove/hide that screen and show another screen in popup asking for second date to select an interval and once you have both the values, you can work that interval in your program

share|improve this answer

You can take a look to Gwtchismes it has got an interval-selector which could work for you.

Gwtchismes is an old gwt library, it was developed before gwt introduced its date-picker, decorator panels, etc, but it should work with last gwt.

You have a demo here.

share|improve this answer
This library doesn't seem to offer anything better than DatePicker in the standard GWT library. – Joel Dec 11 '12 at 1:21
1  
Well, although it is far away to be ideal and it's very old, it has a bit more options than the gwt date-picker. You can set the max/min boundaries, the max/min interval size, number of months to render, etc. I created it for a couple of hotel reservation projects which continue active. – Manolo Dec 11 '12 at 7:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.