checks whether a view with the specified name exists
| name | string | the view name |
| boolean | true, if the view exists. Otherwise, false |
scheduler.init('scheduler_here');
scheduler.load("data/events.xml");
scheduler.isViewExists("month"); //->true
Back to top