ng2-datepicker-bootstrap

Datepicker component to angular2

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
ng2-datepicker-bootstrap
1.0.07 years ago7 years agoMinified + gzip package size for ng2-datepicker-bootstrap in KB

Readme

ng2-datepicker-bootstrap
Datepicker component to angular2 Hi everyone! A very simple datepicker for Angular. You should use the version 2.x.x for Angular 2.x.x applications and the version 4.x.x for Angular 4.x.x applications. Note: This component is ready to AoC (Ahead-of-Time) compilation. Below the operating instructions.

Installation

To install this library, run: ```bash $ npm install ng2-datepicker-bootstrap --save ```

Use Example:

```ts import {DatePickerModule} from 'ng2-datepicker-bootstrap'; import { FormsModule } from '@angular/forms'; @NgModule({
declarations: [...],
imports: [
//... you others modules
DatePickerModule,
FormsModule
],
providers: [...]
}) export class AppModule {} ```

Using

```html (ngModel)="model.firstDate" viewFormat="'DD/MM/YYYY'" modelFormat="'YYYY-MM-DD'" id="'firstDate'" label="'To'"> ``` Available options: viewFormat - Date format to display in the view. (default: 'DD/MM/YYYY') modelFormat - Date format of the calendar. This will be bound to the model as the date's value. (default: 'YYYY-MM-DD') id - Identify your attribute label - Label display name firstWeekdaySunday - Set to 'true' to set first day of the week in calendar to Sunday instead of Monday. opened - Set to true to open the calendar by default ## Questions? Open a Issue!