Package Exports
- d-share
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (d-share) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
d-datepicker
Datepicker component for derby.js.
Datepicker tied to a standard form input field.
Inline datepicker.
Localized datepicker.
Please note that this project is inspired by Bootstrap-datepicker, and makes use of a css-file from that project.
Format
Dates set by datepicker will be in the format YYYY-MM-DD
(2014-04-16).
TODO
- Use personalized formats for dates.
Example usage
First of make sure to install d-datepicker through npm npm install d-datepicker
.
Including
app.use(require('d-datepicker'));
In template
<Body:>
<!-- datepicker tied to a standard form input field -->
<datepicker active="{{post.date}}"></datepicker>
<!-- inline datepicker -->
<datepicker active="{{post.date}}" inline></datepicker>
<!-- localized datepicker -->
<datepicker active="{{post.date}}" inline lang="fr"></datepicker>
Retrieve data
var pickedDate = model.get('post.date');