An aurelia port for bootstrap-datepicker
npm install aurelia-bootstrap-datepickerThis is an aurelia port of the bootstrap-datpicker found here
> To keep up to date on Aurelia, please visit and subscribe to the official blog. If you have questions, we invite you to join us on Gitter. If you would like to have deeper insight into our development process, please install the ZenHub Chrome Extension and visit any of our repository's boards. You can get an overview of all Aurelia work by visiting the framework board.
This library has external dependencies:
* jquery
* bootstrap-datepicker
This library is a plugin and is not used by the core framework.
1. In your project install the plugin with following commands:
* jspm
``shell`
jspm install npm:aurelia-bootstrap-datepicker
* npm
`shell`
npm install aurelia-bootstrap-datepicker --save
2. Make sure you use manual bootstrapping. In order to do so open your index.html and locate the element with the attribute aurelia-app. Change it to look like this:
`html`
...main.js
3. Create (if you haven't already) a file in your src folder with following content:
`javascript
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-bootstrap-datepicker');
aurelia.start().then(a => a.setRoot());
}
`
Simply use the tag
`html``
You can use the following properties:
* value - string - a date string, default format is 'mm-dd-yyyy'. otherwise the format specified in your dp-options
* dp-options - object - an object containing the options for the datepicker. All possibilities are found here.
You can subscribe to the following events:
* changedate - event - Fired when the date is changed.