특정 범위의 날짜를 선택 상태로 합니다.
start
,end
날짜를 각각의 string 형태로 넣어서 사용 합니다.
void select( dateOrObj, endDate );
Name | Type | Required | Description |
---|---|---|---|
dateOrObj | string ,Object |
필수 | 선택 시작 날짜 또는 선택 범위를 설정 할 dateObj |
endDate | string ,Object |
선택 | 선택 종료 날짜 |
none
// string 형태로 사용
IBCalendar.get("calendar1").select("2020-06-13", "2020-06-23");
// object 형태로 사용
IBCalendar.get("calendar1").select({start: "2020-06-13", end: "2020-06-23"});
product | version | desc |
---|---|---|
core | 1.5.0.0 | 기능 추가 |