ng2-datepicker-bootstrap

1.0.0 • Public • Published

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:

$ npm install ng2-datepicker-bootstrap --save

Use Example:

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

Using

  <datepicker [(ngModel)]="model.firstDate" [viewFormat]="'DD/MM/YYYY'" [modelFormat]="'YYYY-MM-DD'"  [id]="'firstDate'" [label]="'To'"></datepicker>

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!

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    98
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    98
  • 0.1.2
    17
  • 0.1.1
    1
  • 0.1.0
    1

Package Sidebar

Install

npm i ng2-datepicker-bootstrap

Weekly Downloads

117

Version

1.0.0

License

MIT

Last publish

Collaborators

  • leonicastro
  • rodolfogalli