This 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.
- In your project install the plugin with following commands:
-
jspm
jspm install npm:aurelia-bootstrap-datepicker
-
npm
npm install aurelia-bootstrap-datepicker --save
- 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:
<body aurelia-app="main">
...
- Create (if you haven't already) a file
main.js
in yoursrc
folder with following content:
export function configure(aurelia) {
aurelia.use
.standardConfiguration()
.developmentLogging()
.plugin('aurelia-bootstrap-datepicker');
aurelia.start().then(a => a.setRoot());
}
Simply use the tag
<bootstrap-datepicker value.bind="'mm-dd-yyyy'" dp-options.bind="dpOptions" changedate.delegate="mychangedatefunction($event)"></bootstrap-datepicker>
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.