https://github.com/dnbard/datepicker
Datepicker component for KnockoutJS
https://github.com/dnbard/datepicker
Last synced: over 1 year ago
JSON representation
Datepicker component for KnockoutJS
- Host: GitHub
- URL: https://github.com/dnbard/datepicker
- Owner: dnbard
- Created: 2015-03-19T20:23:09.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-29T10:10:47.000Z (over 11 years ago)
- Last Synced: 2025-01-26T05:41:28.351Z (over 1 year ago)
- Language: JavaScript
- Homepage: http://dnbard.github.io/datepicker/
- Size: 203 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Knockout Datepicker
===================
Datepicker component for KnockoutJS
Requirement
------------
* KnockoutJS >= v3.2.0
Documentation
-------------
Apply script and stylesheet to your HTML page:
```html
```
Binding:
```html
```
ViewModel:
```js
function ViewModel(){
this.date = new Date();
}
ko.applyBindings(new ViewModel());
```