bootstrap-datetimepicker in angular4(>=2.0-release)
npm install angular-datetimepicker-component cmd
npm install
npm install angular-datetimepicker-component --save
if you have not installed jquery
npm install jquery --save
`
$3
1. Import component.
` javascript
// import NgModule
import {NgModule} from '@angular/core';
// import DateTimePickerComponent
import {DateTimePickerComponent} from 'angular-select2-component';
@NgModule({
// ...
// declare components
declarations: [DateTimePickerComponent]
})
export class YourModule {
}
`
2. Template.
` html
[maxView]="maxView" [minView]="minView" [disabled]="isDisabled" (onChange)="change($event)" >
`
$3
- accuracy: string
- accuracy of date-time pick.
- min(default) | hour | day
- startDate: string
- date range: start date
- endDate: string
- date range: end date
- maxView: string
- maxView: default 4
- 0 or 'hour' for the hour view (hour view)
- 1 or 'day' for the day view 0-24h (day view)
- 2 or 'month' for month view (the default) (month view)
- 3 or 'year' for the 12-month overview (year view)
- 4 or 'decade' for the 10-year overview. Useful for date-of-birth datetimepickers.
- minView: string
- disabled: boolean
- isDisabled: default false
- onSelect`