1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| datePickerConfig:IDatePickerConfig = { firstDayOfWeek: 'su', monthFormat: 'MMM, YYYY', disableKeypress: false, allowMultiSelect: false, closeOnSelect: undefined, closeOnSelectDelay: 100, openOnFocus: true, openOnClick: true, onOpenDelay: 0, weekDayFormat: 'ddd', showNearMonthDays: true, showWeekNumbers: false, enableMonthSelector: true, yearFormat: 'YYYY', showGoToCurrent: true, dayBtnFormat: 'DD', monthBtnFormat: 'MMM', hours12Format: 'hh', hours24Format: 'HH', meridiemFormat: 'A', minutesFormat: 'mm', minutesInterval: 1, secondsFormat: 'ss', secondsInterval: 1, showSeconds: false, showTwentyFourHours: false, timeSeparator: ':', multipleYearsNavigateBy: 10, showMultipleYearsNavigation: false, hideInputContainer: false, unSelectOnClick: true, hideOnOutsideClick: true, format: "YYYY-MM-DD HH:mm", min: this.set_Date(), max: this.set_Date(3), } ....
|