Skip to content

dangrossman/daterangepicker-1

 
 

Repository files navigation

Build Status Join the chat at https://gitter.im/sensortower/daterangepicker ghit.me Analytics

daterangepicker

Demo screenshot

Demo available here

Notable Features

  • Day / Week / Month / Quarter / Year calendar modes
  • Single calendar mode
  • Customazible & extendable
  • Integration with jQuery & Knockout

Dependencies

  • jquery
  • moment
  • knockout

Documentation

Documentation & Examples are available on our website.

Download

Latest Release

Install

bower install knockout-daterangepicker --save

Usage

With jQuery

$("input").daterangepicker({
  minDate: moment().subtract(2, 'years'),
  callback: function (startDate, endDate, period) {
    $(this).val(startDate.format('L') + ' – ' + endDate.format('L'));
  }
});

With Knockout.js

<input type="text" data-bind="daterangepicker: dateRange"/>
ko.applyBindings({
  dateRange: ko.observable([moment().subtract(1, 'month'), moment()])
});

Development

git clone git@github.com:sensortower/daterangepicker.git && cd daterangepicker
npm install && bower install
gulp serve

Copyright

Copyright © 2015 SensorTower Inc. See LICENSE for further details.

Join Us

We're hiring across the board on our technical teams. Contact us by emailing jobs@sensortower.com or making an application - and mention that you saw this note here. Ask for our recruiter, Rumiko.

Here's more about us and our engineering culture: Key Values

About

Date range picker component for the modern web

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • CoffeeScript 61.6%
  • CSS 17.4%
  • HTML 12.2%
  • JavaScript 8.8%