views:

329

answers:

2

Anyone know of any open source datepickers that work like the Google Analytics date range pickers? You can see an image here http://img17.yfrog.com/i/googledaterangepicker.jpg/

+1  A: 
CMS
A: 

I'm also looking for something similar to Google Analytics calendar, what have you found?

I have these two that seems to be also good choices :

And I noticed that the DateRangePicker can show only the DateRange part :

about the “how can i show only the range part of the plugin without showing the left menu”, heres what i do: onOpen: function(){ var rp = $(".ui-daterangepicker:visible"); rp.find("ul").hide(); rp.find(”.ranges").css("marginLeft", “0px"); rp.find(”.ui-daterangepicker-dateRange").trigger("click"); }}

VinnyG