
Product
Introducing Repository Access Permissions and Custom Roles
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.
cake-react-bootstrap-daterangepicker
Advanced tools
A date/time picker for react (using bootstrap). This is a react port of: https://github.com/dangrossman/bootstrap-daterangepicker
A date/time picker for react (using bootstrap). This is a react wrapper around an existing jQuery/bootstrap library (it is not a pure react port):
Install the module with: npm install --save react-bootstrap-daterangepicker
Create your module (you need to use something like browserify to build)
var React = require('react');
var moment = require('moment');
var DateRangePicker = require('react-bootstrap-daterangepicker');
var someReactComponent = React.createClass({
render: function () {
return (
<DateRangePicker startDate={moment('1/1/2014')} endDate={moment('3/1/2014')}>
<div>Click Me To Open Picker!</div>
</DateRangePicker>
);
}
});
<link rel="stylesheet" href="daterangepicker.css" type="text/css" />
For in depth documentation, see the original bootstrap-daterangepicker project page.
You can pass all the same props as the original plugin:
You can listen to the following 7 events:
All 7 of the events above should take a handler that is passed 2 arguments: event and picker
var someReactComponent = React.createClass({
handleEvent: function (event, picker) {
console.log(picker.startDate);
},
render: function () {
return (
<DateRangePicker onEvent={this.handleEvent} />
);
}
});
Release notes can be found in the Changelog.
We will try to release a new version of this project with each new
React
release. We will bump the major version with each React release. If you are using
a specific version of react or react-bootstrap, make sure you specify the correct
version of react-bootstrap-daterangepicker in your package.json file.
Copyright (c) 2014 skratchdot
Uses the original bootstrap-daterangepicker license.
FAQs
A date/time picker for react (using bootstrap). This is a react port of: https://github.com/dangrossman/bootstrap-daterangepicker
We found that cake-react-bootstrap-daterangepicker demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket now supports Custom Roles and Repository Access Permissions so organizations can control who can access specific repositories and actions.

Product
Socket MCP now lets AI assistants review org alerts, investigate threats using the Socket threat feed, and inspect package files in addition to dependency scoring.

Product
Socket Firewall blocks malicious VS Code and Open VSX extensions before install, protecting developers from compromised editor marketplaces.