CalendarButtons (col)

달력이 표시될때 달력 하단에 보여질 버튼을 설정합니다.
설정값의 합을 통해 여러 개 버튼을 표시할 수도 있습니다.
년월 달력의 경우 AutoSelectYm1로 설정할 경우 확인버튼이 보이지 않음.

  1. 년월일 달력

CalendarButtons

  1. 년월 달력

MonthCalendarButtons

Type

number

Options

Value Description
1 "오늘" 버튼
2 "취소" 버튼
4 "OK" 버튼
8 "어제" 버튼
Value Description
1 "이번달" 버튼
2 "취소" 버튼
4 "OK" 버튼

Example

options.Cols = [
    ...
    // 년월일 달력에 어제, 오늘 버튼을 표시한다.
    {Type: "Date", Name: "sa_enterDate", CalendarButtons: 9 ...},
    ...
    // 년월 달력에 이번달, 취소, OK 버튼을 표시한다.
    {Type: "Date", Name: "sa_monthDate", CalendarButtons: 7, Format: "yyyy/MM" ...}
];

Read More

Since

product version desc
core 8.0.0.0 기능 추가