Lines Matching refs:date
3 The **DatePicker** component allows users to select a date from the given range.
19 Creates a date picker in the given date range.
29 | options | [DatePickerOptions](#datepickeroptions) | No | Parameters of the date picker.|
39 | start | Date | No | Start date of the picker.<br>Default value: **Date('1970-1-1')** |
40 | end | Date | No | End date of the picker.<br>Default value: **Date('2100-12-31')** |
41 | selected | Date | No | Date of the selected item.<br>Default value: current system date<br>Since…
47 | The start date is later than the end date, and the selected date is not set. | The start date, …
48 …date is later than the end date, and the selected date is earlier than the default start date. |…
49 …date is later than the end date, and the selected date is later than the default end date. | The…
50 …date is later than the end date, and the selected date is within the range of the default start da…
51 | The selected date is earlier than the start date. | The start date is set to the selected date.…
52 | The selected date is later than the end date. | The selected date is set to the end date. |
53 | The start date is later than the current system date, and the selected date is not set. | The s…
54 | The end date is earlier than the current system date, and the selected date is not set. | The e…
55 | The set date is in invalid format, for example, **'1999-13-32'**. | The default value is used. |
56 … start date or end date is earlier than the earliest date in the valid date range. | The start d…
57 …The start date or end date is later than the latest date in the valid date range. | The start da…
58 …date and end date are earlier than the earliest date in the valid date range.| The start date and …
59 …rt date and end date are later than the latest date in the valid date range.| The start date and e…
61 The valid date range is from 1900-1-31 to 2100-12-31.
63 …ception detection and handling with the selected date comes after that with the start date and end…
150 Triggered when a date is selected.
166 Triggered when a date is selected.
186 | year | number | No | No | Year of the selected date. |
187 | month | number | No | No | Month of the selected date. The value ranges from 0 to 11. The value…
188 | day | number | No | No | Day of the selected date. |
192 This example implements a date picker that allows users to switch between the Gregorian (solar) cal…
221 console.info('select current date is: ' + value.toString())