The DatePicker has the following predefined views that provides a flexible way to navigate back and forth to select the date.
View | Description |
---|---|
month (default) | Displays the days in a month |
year | Displays the months in a year |
decade | Displays the years in a decade |
You can use the start property to define the initial rendering view.
The following example demonstrates how to create a DatePicker with decade
as initial rendering view.
<ejs-datepicker id="datepicker" start=Decade placeholder="Choose a Date"></ejs-datepicker>
Define the depth property to control the view navigation.
Always the depth view has to be smaller than the start view, otherwise the view restriction will be not restricted.
The following example demonstrates how to create a DatePicker that allows users to select a month.
<ejs-datepicker id="datepicker" depth=Year start=Decade placeholder="Choose a Date"></ejs-datepicker>
To know more about Calendar views refer the Calendar’s Calendar Views section.