| 581 | } |
| 582 | |
| 583 | export interface SchedulerConfigOptions { |
| 584 | |
| 585 | /** |
| 586 | * 'says' to present the numbers of days in the Month view as clickable links that open the related day in the specified view |
| 587 | */ |
| 588 | active_link_view: string; |
| 589 | |
| 590 | /** |
| 591 | * sets the date to display events until |
| 592 | */ |
| 593 | agenda_end: Date; |
| 594 | |
| 595 | /** |
| 596 | * sets the date to start displaying events from |
| 597 | */ |
| 598 | agenda_start: Date; |
| 599 | |
| 600 | /** |
| 601 | * specifies how to display the default error notification in case the XML data loading failed |
| 602 | */ |
| 603 | ajax_error: string|boolean; |
| 604 | |
| 605 | /** |
| 606 | * 'says' to show multi-day events in the regular way (as one-day events are displayed) |
| 607 | */ |
| 608 | all_timed: boolean|string; |
| 609 | |
| 610 | /** |
| 611 | * defines the date format for the <strong>api_date</strong> template |
| 612 | */ |
| 613 | api_date: string; |
| 614 | |
| 615 | /** |
| 616 | * enables automatic changing of the end event date after changing the start date |
| 617 | */ |
| 618 | auto_end_date: boolean; |
| 619 | |
| 620 | /** |
| 621 | * stores a collection of buttons resided in the left bottom corner of the lightbox |
| 622 | */ |
| 623 | buttons_left: any[]; |
| 624 | |
| 625 | /** |
| 626 | * stores a collection of buttons resided in the right bottom corner of the lightbox |
| 627 | */ |
| 628 | buttons_right: any[]; |
| 629 | |
| 630 | /** |
| 631 | * sets the maximum number of events in a cascade |
| 632 | */ |
| 633 | cascade_event_count: number; |
| 634 | |
| 635 | /** |
| 636 | * sets the 'cascade' display mode |
| 637 | */ |
| 638 | cascade_event_display: boolean; |
| 639 | |
| 640 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected