Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/misha130/ion-datepicker
Date picker for Ionic
https://github.com/misha130/ion-datepicker
angular datepicker-component ionic2 ionic3
Last synced: 3 months ago
JSON representation
Date picker for Ionic
- Host: GitHub
- URL: https://github.com/misha130/ion-datepicker
- Owner: misha130
- License: mit
- Created: 2016-10-06T06:35:32.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-12-07T23:24:11.000Z (almost 2 years ago)
- Last Synced: 2024-05-29T15:24:47.916Z (5 months ago)
- Topics: angular, datepicker-component, ionic2, ionic3
- Language: TypeScript
- Homepage:
- Size: 2.45 MB
- Stars: 72
- Watchers: 12
- Forks: 64
- Open Issues: 32
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- Awesome - Datepicker
README
### [Demo](https://ion-datepicker.herokuapp.com/)
## How to use ###
### 1) Install using npm ###
```
npm i ion-datepicker --save
```### 2) Add it to your ngModule in app.module ###
```
import { DatePickerModule } from 'ion-datepicker';
```
```
imports: [
IonicModule.forRoot(App),
DatePickerModule,
],
```
### 3) Use the directive ion-datepicker in your html ###
```
{{localDate | date}}
```### Dismiss the datepicker from the class ###
```
import { DatePickerDirective } from 'ion-datepicker';
@ViewChild(DatePickerDirective) private datepickerDirective:DatePickerDirective;
public closeDatepicker(){
this.datepickerDirective.modal.dismiss();
}
```## Options ###
`[value]` - defines the initial value, can be two bindable as in [(value)].
`[min]` - minimum date that user is allowed to select. (not required)
`[max]` - maximum date that user is allowed to select. (not required)
`[disabledDates]` - An array of dates that should be disabled (not required)
`[calendar]` - A boolean that determines whether to show calendar or not. Defaults to true.
`[markDates]` - An array of dates that should be marked with background color (not required)
`(ionChanged)` - an event emitter that returns the date as a $event.
`(ionCanceled)` - an event that is raised when the cancel button is activated. Returns no data.
`(ionSelected)` - an event that is raised when a date is selected
`[headerClasses]` - a bridge to the header classes of the directive using ngClass (string, array or object) (not required)
`[bodyClasses]` - a bridge to the date classes of the directive using ngClass (string, array or object) (not required)
`[modalOptions]` - a modal is used to display the picker to configure the animation or other options you may use this
`[locale]` - for translating the calendar. Avaliable local is en-US, en-UK, he-IL, pt-BR, ru-RU, de, fi, fr-FR, zh-TW, zh-CN, ja-JP. Please note en-US locale starts the calendar with monday and en-UK starts it with sunday
`[localeStrings]` - if you dont want to use the built translations - accepts an object { weekdays: string[], months: string[], monday:boolean },
For example:
```
{
monday:true,
weekdays: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'],
months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']
},
````[okText]` - text for the ok button
`[cancelText]` - text for the cancel button
### 4) Pictures ###