• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IgniteUI / igniteui-angular-wrappers / 4427504397

pending completion
4427504397

push

github

GitHub
Update README.md

281 of 305 branches covered (92.13%)

Branch coverage included in aggregate %.

668 of 713 relevant lines covered (93.69%)

219.79 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

50.0
/projects/igniteui-angular-wrappers/src/lib/igscheduler/igscheduler.component.ts
1
import { Component, ElementRef, IterableDiffers, KeyValueDiffers, ChangeDetectorRef, Renderer2 } from '@angular/core';
2
import { IgControlBase } from '../igcontrolbase/igcontrolbase';
3

4
@Component({
5
    selector: 'ig-scheduler',
6
    template: '<ng-content></ng-content>',
7
    inputs: ['widgetId', 'options', 'changeDetectionInterval', 'disabled', 'create', 'views', 'viewMode', 'selectedDate', 'enableTodayButton', 'width', 'height', 'agendaViewSettings', 'monthViewSettings', 'appointmentDialogSuppress'],
8
    outputs: ['agendaRangeChanging', 'agendaRangeChanged', 'daySelected', 'monthChanging', 'monthChanged', 'rendering', 'rendered', 'viewChanging', 'viewChanged', 'appointmentDialogOpening', 'appointmentDialogOpened', 'appointmentDialogClosing', 'appointmentDialogClosed', 'appointmentCreating', 'appointmentCreated', 'appointmentDeleting', 'appointmentDeleted', 'appointmentEditing', 'appointmentEdited']
9
})
10
export class IgSchedulerComponent extends IgControlBase<IgScheduler> {
1✔
11
    constructor(el: ElementRef, renderer: Renderer2, differs: IterableDiffers, kvalDiffers: KeyValueDiffers, cdr: ChangeDetectorRef) {
12
        super(el, renderer, differs, kvalDiffers, cdr);
×
13
    }
14

15
    /**
16
     * Gets reference to appointment by id
17
     *
18
     * @param id id
19
     */
20
    /* istanbul ignore next */
21
    public getAppointmentById(id: object): object { return; }
22

23
    /**
24
     * Creates a new appointment and renders it to the scheduler
25
     *
26
     * @param appointment appointment
27
     */
28
    /* istanbul ignore next */
29
    public createAppointment(appointment: object): object { return; }
30

31
    /**
32
     * Deletes appointment from the appointment collection
33
     *
34
     * @param appointment        appointment
35
     */
36
    /* istanbul ignore next */
37
    public deleteAppointment(appointment: object): object { return; }
38

39
    /**
40
     * Deletes appointment from the appointment collection
41
     *
42
     * @param appointment        appointment
43
     * @param updateAppoinment        updateAppoinment
44
     */
45
    /* istanbul ignore next */
46
    public editAppointment(appointment: object, updateAppoinment: object): object { return; }
47

48
    /**
49
     * Destroys the widget
50
     */
51
    /* istanbul ignore next */
52
    public destroy(): void { return; }
53

54
    /**
55
     * Gets reference to the today UI button.
56
     */
57
    /* istanbul ignore next */
58
    public todayButton(): string { return; }
59

60
    /**
61
     * Gets reference to the previous UI button.
62
     */
63
    /* istanbul ignore next */
64
    public previousButton(): string { return; }
65

66
    /**
67
     * Gets reference to the date range UI button.
68
     */
69
    /* istanbul ignore next */
70
    public dateRangeButton(): string { return; }
71

72
    /**
73
     * Gets reference to the next UI button.
74
     */
75
    /* istanbul ignore next */
76
    public nextButton(): string { return; }
77

78
    /**
79
     * Gets reference to the jQuery calendar UI control.
80
     */
81
    /* istanbul ignore next */
82
    public getCalendar(): string { return; }
83
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc