isViewExists

지정된 이름의 뷰가 존재하는지 확인합니다.

boolean isViewExists(string name);
namestring뷰의 이름
boolean뷰가 존재하면 true, 그렇지 않으면 false

Example

scheduler.init('scheduler_here');
scheduler.load("data/events.xml");
 
scheduler.isViewExists("month"); //->true

맨 위로