-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMindFusion.Scheduling-vsdoc.js
2012 lines (1937 loc) · 117 KB
/
MindFusion.Scheduling-vsdoc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
MindFusion = {
Scheduling: {
BaseForm: function (calendar, item) {
/// <summary>The BaseForm class is the base class for all built-in forms.</summary>
/// <param name="calendar" type="Calendar">Calendar. The calendar parent object of this form.</param>
/// <param name="item" type="Item">Item. The item instance associated with this form.</param>
/// <field name="formatInfo" type="Object">Gets the locale object used to format and display date and time information in the form.</field>
/// <field name="headerText" type="String">Gets or sets the text which is displayed in the header of the form.</field>
/// <field name="id" type="String">Gets the id of the form.</field>
/// <field name="localInfo" type="Object">Gets the locale object used to format and display localizable strings in the form.</field>
/// <field name="type" type="String">Gets the type of the form.</field>
/// <field name="calendar" type="Calendar">Gets the calendar, displaying the form.</field>
/// <field name="controls" type="Dictionary">Gets the controls collection.</field>
/// <field name="item" type="Item">Gets the item, whose information is displayed in the form.</field>
},
ButtonEventArgs: function (button) {
/// <summary>Specifies data for the buttonClick event.</summary>
/// <param name="button" type="Number">Number. A value indicating which navigation button is clicked.</param>
/// <field name="button" type="Number">Gets a value indicating which navigation button is clicked.</field>
},
Calendar: function (element) {
/// <summary>The Calendar control serves as a view in document-viewarchitecture, where the document is implemented by the Schedule class. The Calendar provides several schedulerelated views, such as Month, List, Timetable, thatpresent the scheduled events in different styles and layouts.</summary>
/// <param name="element" type="DomElement">The element this Calendar is associated with.</param>
/// <field name="allowInplaceEdit" type="Boolean">Gets or sets a value indicating whether calendar's items can be inplace-edited.</field>
/// <field name="cells" type="ObservableCollection">Gets the collection of cells in the calendar view.</field>
/// <field name="contactNameFormat" type="String">Gets or sets a value indicating how to format and display contact names in view headers.</field>
/// <field name="contacts" type="ObservableCollection">Gets the contacts whose schedule to display when the GroupType property is set to GroupByContacts or FilterByContacts.</field>
/// <field name="cssClass" type="String">Gets or sets the css class of the calendar.</field>
/// <field name="currentView" type="CalendarView">Gets or sets the type of the current view of the calendar.</field>
/// <field name="date" type="DateTime">Gets or sets the date of the calendar.</field>
/// <field name="element" type="DomElement">Gets a reference to the calendar DOM element.</field>
/// <field name="enabled" type="Boolean">Gets or sets a value indicating whether user interactions are allowed in the calendar.</field>
/// <field name="endDate" type="DateTime">Gets or sets the end date of the calendar.</field>
/// <field name="formatInfo" type="Object">Gets the locale object used to format and display date and time information in the calendar.</field>
/// <field name="groupType" type="GroupType">Gets or sets the grouping or filtering criteria for the calendar.</field>
/// <field name="header" type="DomElement">Gets a reference to the DOM element of the calendar main header.</field>
/// <field name="itemSelection" type="ObservableCollection">Gets the list of currently selected items.</field>
/// <field name="itemSettings" type="ItemSettings">Gets the ItemSettings object used to customize the appearance of calendar items.</field>
/// <field name="licenseLocation" type="String">Gets or sets the URL of the calendar's license file.</field>
/// <field name="listSettings" type="ListSettings">Gets the ListSettings object used to customize the appearance of the List view.</field>
/// <field name="locale" type="Object">Gets or sets the locale object used to format and display localizable information in the calendar.</field>
/// <field name="localInfo" type="Object">Gets the locale object used to format and display localizable strings in the calendar.</field>
/// <field name="locations" type="ObservableCollection">Gets the locations whose schedule to display when the groupType property is set to GroupByLocations or FilterByLocations.</field>
/// <field name="monthRangeSettings" type="MonthRangeSettings">Gets the MonthRangeSettings object used to customize the appearance of the MonthRange view.</field>
/// <field name="monthSettings" type="MonthSettings">Gets the MonthSettings object used to customize the appearance of the SingleMonth view.</field>
/// <field name="resources" type="ObservableCollection">Gets the resources whose schedule to display when the GroupType property is set to GroupByResources or FilterByResources.</field>
/// <field name="resourceViewSettings" type="ResourceViewSettings">Gets the ResourceViewSettings object used to customize the appearance of the Resource view.</field>
/// <field name="schedule" type="Schedule">Gets or sets the schedule to be displayed inside the calendar.</field>
/// <field name="selection" type="Selection">Gets the current calendar selection.</field>
/// <field name="showTooltips" type="Boolean">Gets or sets a value indicating whether to show tooltips.</field>
/// <field name="tasks" type="ObservableCollection">Gets the tasks whose schedule to display when the GroupType property is set to GroupByTasks or FilterByTasks.</field>
/// <field name="theme" type="String">Gets or sets the current theme of the calendar.</field>
/// <field name="timetableSettings" type="TimetableSettings">Gets the TimetableSettings object used to customize the appearance of the Timetable view.</field>
/// <field name="useForms" type="Boolean">Gets or sets a value indicating whether the built-in forms for item editing will be used.</field>
/// <field name="weekRangeSettings" type="WeekRangeSettings">Gets the WeekRangeSettings object used to customize the appearance of the WeekRange view.</field>
/// <field name="endTime" type="DateTime">Gets the end time of the last calendar cell.</field>
/// <field name="itemsEndTime" type="DateTime">Gets the end time of the last calendar cell, that can contain items.</field>
/// <field name="itemsStartTime" type="DateTime">Gets the start time of the first calendar cell, that can contain items.</field>
/// <field name="startTime" type="DateTime">Gets the start time of the first calendar cell.</field>
/// <field name="buttonClick" type="EventDispatcher">Raised when a navigation button is clicked. Syntax: buttonClick.addEventListener( function(sender, args){} );</field>
/// <field name="calendarLoad" type="EventDispatcher">Raised when the control is loaded. Syntax: calendarLoad.addEventListener( function(sender, args){} );</field>
/// <field name="cellClick" type="EventDispatcher">Raised when a calendar time cell is clicked. Syntax: cellClick.addEventListener( function(sender, args){} );</field>
/// <field name="cellDoubleClick" type="EventDispatcher">Raised when a calendar time cell is double-clicked. Syntax: cellDoubleClick.addEventListener( function(sender, args){} );</field>
/// <field name="cueClick" type="EventDispatcher">Raised when an item cue is clicked. Syntax: cueClick.addEventListener( function(sender, args){} );</field>
/// <field name="formClose" type="EventDispatcher">Raised when a popup form is closed. Syntax: formClose.addEventListener( function(sender, args){} );</field>
/// <field name="formShow" type="EventDispatcher">Raised when a popup form is shown. Syntax: formShow.addEventListener( function(sender, args){} );</field>
/// <field name="headerClick" type="EventDispatcher">Raised when a calendar header is clicked. Syntax: headerClick.addEventListener( function(sender, args){} );</field>
/// <field name="headerDoubleClick" type="EventDispatcher">Raised when a calendar header is double-clicked. Syntax: headerDoubleClick.addEventListener( function(sender, args){} );</field>
/// <field name="itemClick" type="EventDispatcher">Raised when an item is clicked. Syntax: itemClick.addEventListener( function(sender, args){} );</field>
/// <field name="itemCreated" type="EventDispatcher">Raised when an item is created. Syntax: itemCreated.addEventListener( function(sender, args){} );</field>
/// <field name="itemCreating" type="EventDispatcher">Raised while an item is being created. Syntax: itemCreating.addEventListener( function(sender, args){} );</field>
/// <field name="itemDeleted" type="EventDispatcher">Raised when an item is deleted. Syntax: itemDeleted.addEventListener( function(sender, args){} );</field>
/// <field name="itemDeleting" type="EventDispatcher">Raised while an item is being deleted. Syntax: itemDeleting.addEventListener( function(sender, args){} );</field>
/// <field name="itemDoubleClick" type="EventDispatcher">Raised when an item is double-clicked. Syntax: itemDoubleClick.addEventListener( function(sender, args){} );</field>
/// <field name="itemModified" type="EventDispatcher">Raised when an item is modified. Syntax: itemModified.addEventListener( function(sender, args){} );</field>
/// <field name="itemModifying" type="EventDispatcher">Raised while an item is being modified. Syntax: itemModifying.addEventListener( function(sender, args){} );</field>
/// <field name="itemReminderTriggered" type="EventDispatcher">Raised when an item remider is triggered. Syntax: itemReminderTriggered.addEventListener( function(sender, args){} );</field>
/// <field name="itemSelectionChanged" type="EventDispatcher">Raised when a selection of items changes. Syntax: itemSelectionChanged.addEventListener( function(sender, args){} );</field>
/// <field name="recurringItemDeleting" type="EventDispatcher">Raised while a recurring item is being deleted. Syntax: recurringItemDeleting.addEventListener( function(sender, args){} );</field>
/// <field name="selectionChanged" type="EventDispatcher">Raised when a selection changes. Syntax: selectionChanged.addEventListener( function(sender, args){} );</field>
/// <field name="selectionEnd" type="EventDispatcher">Raised when a selection has ended. Syntax: selectionEnd.addEventListener( function(sender, args){} );</field>
/// <field name="selectionStart" type="EventDispatcher">Raised when a selection is started. Syntax: selectionStart.addEventListener( function(sender, args){} );</field>
/// <field name="taskReminderTriggered" type="EventDispatcher">Raised when an task remider is triggered. Syntax: taskReminderTriggered.addEventListener( function(sender, args){} );</field>
/// <field name="visibleDateChanged" type="EventDispatcher">Raised when the calendar date is changed. Syntax: visibleDateChanged.addEventListener( function(sender, args){} );</field>
},
CalendarView: function() {
/// <summary>Specifies the type of view to display in a calendar control.</summary>
},
CancelEventArgs: function () {
/// <summary>Provides a value to use with cancellable events.</summary>
/// <field name="cancel" type="Boolean">Gets or sets a value indicating whether to allow the current operation.</field>
},
CellEventArgs: function (cell) {
/// <summary>Specifies data for cell related events.</summary>
/// <param name="cell" type="ViewCell">ViewCell. The calendar view cell related to the event.</param>
/// <field name="cell" type="ViewCell">Gets the calendar view cell related to the event.</field>
},
Contact: function () {
/// <summary>Represents an object that holds contact data for a person.</summary>
/// <field name="address" type="String">Gets or sets the address of the contact.</field>
/// <field name="email" type="String">Gets or sets the email of the contact.</field>
/// <field name="firstName" type="String">Gets or sets the first name of the contact.</field>
/// <field name="lastName" type="String">Gets or sets the last name of the contact.</field>
/// <field name="middleName" type="String">Gets or sets the middle name of the contact.</field>
/// <field name="phone" type="String">Gets or sets the phone of the contact.</field>
},
DailyRecurrence: function() {
/// <summary>Specifies daily recurrence patterns.</summary>
},
DateChangedEventArgs: function (newDate, prevDate) {
/// <summary>Specifies data for the visibleDateChanged event.</summary>
/// <param name="newDate" type="DateTime">DateTime. The new visible date.</param>
/// <param name="prevDate" type="DateTime">DateTime. The previous visible date.</param>
/// <field name="newDate" type="DateTime">Gets the new visible date.</field>
/// <field name="prevDate" type="DateTime">Gets the previous visible date.</field>
},
DateTime: function (date) {
/// <summary>A Javascript Date object wrapper that extends the functionality of the JavaScript Date object.</summary>
/// <param name="date" type="Date">Date. A JavaScript Date object.</param>
/// <field name="date" type="DateTime">Gets the date component of this DateTime object.</field>
/// <field name="day" type="Number">Gets the day component of the date represented by this DateTime instance.</field>
/// <field name="dayOfWeek" type="Number">Gets the day of the week represented by this DateTime.</field>
/// <field name="daysInMonth" type="Number">Gets the number of days in the month represented by this DateTime.</field>
/// <field name="hour" type="Number">Gets the hour component of the date represented by this DateTime instance.</field>
/// <field name="millisecond" type="Number">Gets the millisecond component of the date represented by this DateTime instance.</field>
/// <field name="minute" type="Number">Gets the minute component of the date represented by this DateTime instance.</field>
/// <field name="month" type="Number">Gets the month component of the date represented by this DateTime instance.</field>
/// <field name="second" type="Number">Gets the second component of the date represented by this DateTime instance.</field>
/// <field name="timeOfDay" type="Number">Gets the time component of this DateTime object, expressed in milliseconds.</field>
/// <field name="year" type="Number">Gets the year component of the date represented by this DateTime instance.</field>
},
DayOfWeek: function() {
/// <summary>Specifies the day of the week.</summary>
},
DayOfWeekFormat: function() {
/// <summary>Specifies the display format of a day of the week.</summary>
},
DayOfWeekType: function() {
/// <summary>Specifies the type of week day to use with monthly and yearly recurrence patterns.</summary>
},
DaysOfWeek: function() {
/// <summary>Specifies the day of the week. This enum allows bitwise combination of its members.</summary>
},
Dictionary: function () {
/// <summary>Represents a collection of keys and values.</summary>
},
EmptyEventArgs: function () {
/// <summary>Provides a value to use with events that do not have event data.</summary>
},
EventArgs: function () {
/// <summary>The base type of classes that define arguments passed to event handler functions.</summary>
},
EventDispatcher: function () {
/// <summary>Represents a dispatcher for an event.</summary>
},
FormEventArgs: function (form) {
/// <summary>Specifies data for form related events.</summary>
/// <param name="form" type="BaseForm">BaseForm. The form instance related to the event.</param>
/// <field name="form" type="BaseForm">Gets the form related to the event.</field>
},
GroupType: function() {
/// <summary>Specifies grouping or filtering criteria for views that support grouping.</summary>
},
HeaderEventArgs: function (type) {
/// <summary>Specifies data for header related events.</summary>
/// <param name="type" type="HeaderType">HeaderType. The type of the header related to the event.</param>
/// <field name="type" type="HeaderType">Gets the type of the header related to the event.</field>
},
HeaderType: function() {
/// <summary>Specifies the type of a calendar header.</summary>
},
HorizontalHeaderStyle: function() {
/// <summary>Specifies the appearance of a horizontal header in the calendar.</summary>
},
IEnumerable: function (items) {
/// <summary>Represents an array of arbitrary objects.</summary>
/// <param name="items" type="Array" optional="true">Optional. Array. The underlying array data structure of the collection.</param>
},
Item: function () {
/// <summary>Represents appointments within a schedule.</summary>
/// <field name="allDayEvent" type="Boolean">Gets or sets a value indicating whether the item represents an all day event.</field>
/// <field name="allowChangeEnd" type="Boolean">Gets or sets a value indicating whether users are allowed to change the item's end time.</field>
/// <field name="allowChangeStart" type="Boolean">Gets or sets a value indicating whether users are allowed to change the item's start time.</field>
/// <field name="allowMove" type="Boolean">Gets or sets a value indicating whether users are allowed to move the Item.</field>
/// <field name="contacts" type="ObservableCollection">Gets the collection of contacts associated with this Item.</field>
/// <field name="cssClass" type="String">Gets or sets the css class of the Item.</field>
/// <field name="details" type="String">Gets or sets the description rendered for this Item by the scheduling control.</field>
/// <field name="endTime" type="DateTime">Gets or sets Item's scheduled end time.</field>
/// <field name="id" type="String">Gets or sets the string identifier of this item.</field>
/// <field name="location" type="Location">Gets or sets the location associated with this Item.</field>
/// <field name="locked" type="Boolean">Gets or sets a value indicating whether users are forbidden to modify this item.</field>
/// <field name="occurrenceIndex" type="Number">Gets the index of a repeating occurrence of a recurring Item.</field>
/// <field name="priority" type="Number">Gets or sets the priority of the Item.</field>
/// <field name="recurrence" type="Recurrence"> Gets or sets the recurrence pattern of this item.</field>
/// <field name="recurrenceState" type="RecurrenceState">Gets the recurrence state of this Item.</field>
/// <field name="reminder" type="Reminder">Gets or sets the Reminder for this Item.</field>
/// <field name="resources" type="ObservableCollection">Gets the collection of Resource-s associated with this Item.</field>
/// <field name="startTime" type="DateTime">Gets or sets Item's scheduled start time.</field>
/// <field name="subject" type="String">Gets or sets the text rendered in the header for this Item by the scheduling control.</field>
/// <field name="tag" type="Object">Gets or sets custom data associated with the item.</field>
/// <field name="task" type="Task">Gets or sets the Task associated with this Item.</field>
/// <field name="visible" type="Boolean">Gets or sets a value indicating whether the Item is visible or not.</field>
},
ItemEventArgs: function (item, rawEventArgs) {
/// <summary>Specifies data for the item related events.</summary>
/// <param name="item" type="Item">Item. The item, associated with the event.</param>
/// <param name="rawEventArgs" type="Object">Object. The Javascript event data.</param>
/// <field name="item" type="Item">Gets the item, associated with the event.</field>
/// <field name="rawEventArgs" type="Object">Gets the Javascript event data.</field>
},
ItemModifiedEventArgs: function (item, oldItem, action) {
/// <summary>Specifies data for the itemModified event.</summary>
/// <param name="item" type="Item">Item. The new item.</param>
/// <param name="oldItem" type="Item">Item. The old item.</param>
/// <param name="action" type="ItemModifyAction">One of the ItemModifyAction enumeration values. The action that has modified the item.</param>
/// <field name="action" type="ItemModifyAction">Gets the type of action that is modifying the item.</field>
/// <field name="item" type="Item">Gets the Item that was modified.</field>
/// <field name="oldItem" type="Item">Gets the Item before the modification has occurred.</field>
},
ItemModifyAction: function() {
/// <summary>Specifies the type of modification action used, when an item is modified.</summary>
},
ItemModifyingEventArgs: function (item, changes, action) {
/// <summary>Specifies data for the itemModifying event.</summary>
/// <param name="item" type="Item">Item. The new item.</param>
/// <param name="changes" type="Object">Object. An object containing the changed properties.</param>
/// <param name="action" type="ItemModifyAction">One of the ItemModifyAction enumeration values. The action that is modifying the item.</param>
/// <field name="action" type="ItemModifyAction">Gets the type of action that is modifying the Item.</field>
/// <field name="changes" type="Object">Gets the changed properties of the Item, associated with the event.</field>
/// <field name="item" type="Item">Gets the item that is modified.</field>
},
ItemSettings: function () {
/// <summary>Defines properties that enable appearance customization of schedule Item-s in the calendar views.</summary>
/// <field name="cssClass" type="String">Gets or sets the default CSS class for all appointments whose CSS is not explicitly specified.</field>
/// <field name="showContinuationArrows" type="Boolean">Gets or sets a value indicating whether to display small arrows at the beginning or at the end of each incomplete segment to indicate that the schedule Item continues in an adjacent calendar cell.</field>
/// <field name="showCues" type="Boolean">Gets or sets a value indicating whether to display a 'more items' link in a calendar cell which isn't big enough to contain all of its items.</field>
/// <field name="showItems" type="Boolean">Gets or sets a value indicating whether to display schedule Item-s.</field>
/// <field name="size" type="Number">Gets or sets the size of schedule items drawn in the calendar.</field>
/// <field name="spacing" type="Number">Gets or sets the amount of space between adjacent Item-s.</field>
/// <field name="titleFormat" type="String">Gets or sets a value indicating how to format and display item titles.</field>
/// <field name="tooltipFormat" type="String">Gets or sets a value indicating how to format and display item tooltips.</field>
},
Keys: function() {
/// <summary>Identifies special Keys.</summary>
},
List: function (items) {
/// <summary>Represents an array of arbitrary objects.</summary>
/// <param name="items" type="Array" optional="true">Optional. Array. The underlying array data structure of the list.</param>
},
ListSettings: function () {
/// <summary>Defines properties that allow customization of the appearance of a List view.</summary>
/// <field name="cellUnits" type="TimeUnit">Gets or sets the resolution of the list view.</field>
/// <field name="firstDayOfMonthFormat" type="String">Gets or sets the string used to format the cell header of the first day of each month.</field>
/// <field name="firstDayOfYearFormat" type="String">Gets or sets the string used to format the cell header of the first day of each year.</field>
/// <field name="generalFormat" type="String">Gets or sets the string used to format cells' headers.</field>
/// <field name="headerStyle" type="MainHeaderStyle">Gets or sets the style of the view header.</field>
/// <field name="maxItems" type="Number">Gets or sets the maximum number of items to display in a cell.</field>
/// <field name="numberOfCells" type="Number">Gets or sets the total number of cells to be displayed in the view.</field>
/// <field name="orientation" type="Orientation">Gets or sets the orientation of the view.</field>
/// <field name="titleFormat" type="String">Gets or sets the string used to format the header title.</field>
/// <field name="visibleCells" type="Number">Gets or sets the number of cells visible at the same time.</field>
},
Location: function () {
/// <summary>Specifies data that identifies a location.</summary>
/// <field name="address" type="String">Gets or sets the address of the Location.</field>
/// <field name="city" type="String">Gets or sets the city of the Location.</field>
/// <field name="country" type="String">Gets or sets the country of the Location.</field>
/// <field name="state" type="String">Gets or sets the state of the location.</field>
/// <field name="zipCode" type="String">Gets or sets the zip code of the location.</field>
},
MainHeaderStyle: function() {
/// <summary>Specifies the appearance of the calendar's main header.</summary>
},
MonthlyRecurrence: function() {
/// <summary>Specifies monthly recurrence patterns.</summary>
},
MonthRangeSettings: function () {
/// <summary>Defines properties that allow customization of the appearance of a MonthRange view.</summary>
/// <field name="headerStyle" type="MainHeaderStyle">Gets or sets the style of the view header.</field>
/// <field name="monthsPerRow" type="Number">Gets or sets the number of months to be displayed in a row.</field>
/// <field name="numberOfMonths" type="Number">Gets or sets the total number of months to be displayed in the MonthRange view.</field>
/// <field name="titleFormat" type="String">Gets or sets the string used to format the header title.</field>
/// <field name="titleSeparator" type="String">Gets or sets the string used as a title separator.</field>
/// <field name="visibleRows" type="Number">Gets or sets the number of rows visible at the same time.</field>
},
MonthSettings: function () {
/// <summary>Defines properties that allow customization of the appearance of a Month view.</summary>
/// <field name="dayNamesHeaderStyle" type="HorizontalHeaderStyle">Gets or sets the style of the view day names header.</field>
/// <field name="dayOfWeekFormat" type="DayOfWeekFormat">Gets or sets the format of the day names displayed in the day names header.</field>
/// <field name="firstDayOfMonthFormat" type="String">Gets or sets the string used to format the cell header of the first day of each month.</field>
/// <field name="firstDayOfYearFormat" type="String">Gets or sets the string used to format the cell header of the first day of each year.</field>
/// <field name="generalFormat" type="String">Gets or sets the string used to format cells' headers.</field>
/// <field name="headerStyle" type="MainHeaderStyle">Gets or sets the style of the view header.</field>
/// <field name="hideTrailingWeeks" type="Boolean">Gets or sets a value indicating whether to hide trailing weeks, which do not contain days from the current month.</field>
/// <field name="leadingWeekCount" type="Number">Gets or sets the number of full weeks to display from the previous month.</field>
/// <field name="maxItems" type="Number">Gets or sets the maximum number of items to display in a cell.</field>
/// <field name="showPaddingDays" type="Boolean">Gets or sets a value indicating whether to display days from theprevious and next months at the beginning and the end of the current one, in order to fill the whole grid of day cells.</field>
/// <field name="showPaddingItems" type="Boolean">Gets or sets a value indicating whether items are shown in padding days.</field>
/// <field name="titleFormat" type="String">Gets or sets the string used to format the header title.</field>
/// <field name="trailingWeekCount" type="Number">Gets or sets the number of full weeks to display from the next month.</field>
/// <field name="weekHeaderStyle" type="VerticalHeaderStyle">Gets or sets the style of the view week numbers header.</field>
/// <field name="expandDayHeaders" type="Boolean">Gets or sets a value indicating whether day headers should fill the whole day cell.</field>
},
NotifyCollectionChangedAction: function () {
/// <summary>Provides data for collection changed action events.</summary>
},
NotifyCollectionChangedEventArgs: function (action, changes, index) {
/// <summary>Provides data for CollectionChanged events.</summary>
/// <param name="action" type="NotifyCollectionChangedAction">NotifyCollectionChangedAction. The action that caused the event.</param>
/// <param name="changes" type="Array" optional="true">Optional. Array. The items affected by the change.</param>
/// <param name="index" type="Number" optional="true">Optional. Number. The index where the change occurred.</param>
},
NotifyCollectionChangedEventDispatcher: function () {
/// <summary>Represents a dispatcher for NotifyCollectionChanged events.</summary>
},
NotifyCollectionChangingEventArgs: function (action, changes, index) {
/// <summary>Provides data for CollectionChanging events.</summary>
/// <param name="action" type="NotifyCollectionChangedAction">NotifyCollectionChangedAction. The action that caused the event.</param>
/// <param name="changes" type="Array" optional="true">Optional. Array. The items affected by the change.</param>
/// <param name="index" type="Number" optional="true">Optional. Number. The index where the change occurred.</param>
},
NotifyCollectionChangingEventDispatcher: function () {
/// <summary>Represents a dispatcher for NotifyCollectionChanging events.</summary>
},
ObservableCollection: function (items) {
/// <summary>Represents a collection of arbitrary objects.</summary>
/// <param name="items" type="Array" optional="true">Optional. Array. The underlying array data structure of the collection.</param>
/// <field name="collectionChanged" type="NotifyCollectionChangedEventDispatcher">Occurs when an item is added, removed, changed, moved, or the entire list is refreshed.</field>
/// <field name="propertyChanged" type="PropertyChangedEventDispatcher">Occurs when a property value changes.</field>
},
Occurrence: function() {
/// <summary>Specifies the index of occurrence.</summary>
},
Orientation: function() {
/// <summary>Specifies orientation for calendar elements.</summary>
},
PropertyChangedEventArgs: function () {
/// <summary>Provides data for PropertyChanged events.</summary>
},
PropertyChangedEventDispatcher: function () {
/// <summary>Represents a dispatcher for PropertyChanged events.</summary>
},
PropertyEventArgs: function (propertyName, oldValue, newValue) {
/// <summary>Provides data for PropertyChanged events.</summary>
/// <param name="propertyName" type="String">String. The name of the property that changed.</param>
/// <param name="oldValue" type="Object">Object. The old value of the property.</param>
/// <param name="newValue" type="Object">Object. The new value of the property.</param>
},
Recurrence: function () {
/// <summary>Defines recurrence patterns for items scheduled to repeat over and over again.</summary>
/// <field name="daily" type="DailyRecurrence">Gets or sets the type of daily recurrence.</field>
/// <field name="day" type="DayOfWeekType">Gets or sets a value indicating the day of the week when the event occurs.</field>
/// <field name="dayOfMonth" type="Number">Gets or sets the day of the month when the event occurs.</field>
/// <field name="days" type="Number">Gets or sets the number of days between two consecutive occurrences of the same event.</field>
/// <field name="daysOfWeek" type="DaysOfWeek">Gets or sets the days of the week when the event occurs.</field>
/// <field name="end" type="RecurrenceEnd">Gets orsets the last time when the event occurs.</field>
/// <field name="endDate" type="DateTime">Gets or sets the end date of the Recurrence.</field>
/// <field name="exceptions" type="Dictionary">Gets a list with all Recurrence exceptions.</field>
/// <field name="interval" type="Number">Gets or sets the interval of Recurrence.</field>
/// <field name="master" type="Item">Gets the master item for the recurrence.</field>
/// <field name="monthly" type="MonthlyRecurrence">Gets or sets the type of monthly recurrence.</field>
/// <field name="monthOfYear" type="Number">Gets or sets the month of the year when the event occurs.</field>
/// <field name="months" type="Number">Gets or sets the number of months between two consecutive occurrences of the same event.</field>
/// <field name="numOccurrences" type="Number">Gets or sets how many times a recurring event should occur.</field>
/// <field name="occurrence" type="Occurrence">Gets or sets on which occurrence of the week within the month the event occurs.</field>
/// <field name="pattern" type="RecurrencePattern">Gets or sets the recurrence pattern.</field>
/// <field name="startDate" type="DateTime">Gets or sets the date and time of the event's first occurrence.</field>
/// <field name="weeks" type="Number">Gets or sets the number of weeks between two consecutive occurrences of the event.</field>
/// <field name="yearly" type="YearlyRecurrence">Gets or sets the type of yearly recurrence.</field>
},
RecurrenceEnd: function() {
/// <summary>Specifies when to stop repeating recurring events.</summary>
},
RecurrencePattern: function() {
/// <summary>Specifies the interval at which recurring events occur.</summary>
},
RecurrenceState: function() {
/// <summary>Specifies the recurrence state of items.</summary>
},
Reminder: function () {
/// <summary>Represents reminders associated with schedule Item-s.</summary>
/// <field name="message" type="String">Gets or sets the message to display as a Reminder.</field>
/// <field name="time" type="DateTime">Gets or sets the time when the Reminder is triggered.</field>
/// <field name="timeInterval" type="TimeSpan">Gets or sets how much time before the item's scheduled start time to raise the event that triggers the Reminder.</field>
/// <field name="type" type="ReminderType">Gets or sets the type of this Reminder.</field>
},
ReminderType: function() {
/// <summary>Specifies the type of a Reminder.</summary>
},
Resource: function () {
/// <summary>Instances of the Resource class contain information about arbitrary resources.</summary>
/// <field name="id" type="String">Gets or sets the string identifier for this resource.</field>
/// <field name="name" type="String">Gets or sets the name for this resource.</field>
/// <field name="tag" type="Object">Gets or sets custom data associated with the resource.</field>
},
ResourceViewSettings: function () {
/// <summary>Defines properties that allow customization of the appearance of a Resource view.</summary>
/// <field name="bottomTimelineSettings" type="TimelineSettings">Gets the settings for the bottom timeline.</field>
/// <field name="middleTimelineSettings" type="TimelineSettings">Gets the settings for the middle timeline.</field>
/// <field name="timelines" type="Number">Gets or sets the number of timelines displayed in the view.</field>
/// <field name="topTimelineSettings" type="TimelineSettings">Gets the settings for the top timeline.</field>
/// <field name="visibleCells" type="Number">Gets or sets the number of cells visible at the same time.</field>
},
ResourceViewTimeline: function() {
/// <summary>Specifies the type of a timeline in a Resource view.</summary>
},
Schedule: function () {
/// <summary>Represents a timetable of scheduled events. In the model-view architecture, Schedule instances are the documents whose data is displayed by Calendar instances, which are the views.</summary>
/// <field name="contacts" type="ObservableCollection">Gets the collection of contacts in this schedule.</field>
/// <field name="items" type="ObservableCollection">Gets the collection of items in this schedule.</field>
/// <field name="locations" type="ObservableCollection">Gets the collection of locations in this schedule.</field>
/// <field name="resources" type="ObservableCollection">Gets the collection of resources in this schedule.</field>
/// <field name="tasks" type="ObservableCollection">Gets the collection of tasks in this schedule.</field>
/// <field name="itemsChanged" type="EventDispatcher">Raised when the items collection of the Schedule is changed. Syntax: itemsChanged.addEventListener( function(sender, args){} );</field>
/// <field name="itemsChanging" type="EventDispatcher">Raised when the items collection of the Schedule is changing. Syntax: itemsChanging.addEventListener( function(sender, args){} );</field>
},
Selection: function () {
/// <summary>Represents a selected date-time range.</summary>
/// <field name="allowMultiple" type="Boolean">Gets or sets a value indicating whether users are allowed to select more than one date cell at a time.</field>
/// <field name="enabled" type="Boolean">Gets or sets a value indicating whether users are allowed to select date cells.</field>
},
SelectionEventArgs: function (startTime, endTime, resource) {
/// <summary>Specifies data for selection related events.</summary>
/// <param name="startTime" type="DateTime">A DateTime that indicates the start time of the selection.</param>
/// <param name="endTime" type="DateTime">A DateTime that indicates the end time of the selection.</param>
/// <param name="resource" type="Resource">The Resource related to the event.</param>
/// <field name="endTime" type="DateTime">Gets the end time of the selection.</field>
/// <field name="resource" type="Resource">Gets the resource related to the event.</field>
/// <field name="startTime" type="DateTime">Gets the start time of the selection.</field>
},
Task: function () {
/// <summary>Represents a task in the calendar.</summary>
/// <field name="actualCost" type="Number">Gets or sets the actual cost of the Task.</field>
/// <field name="actualDuration" type="Number">Gets or sets the actual duration of the Task.</field>
/// <field name="actualEnd" type="DateTime">Gets or sets the actual completion date of this Task.</field>
/// <field name="actualStart" type="DateTime">Gets or sets the actual start date of the Task.</field>
/// <field name="details" type="String">Gets or sets the details of the Task.</field>
/// <field name="dueDate" type="DateTime">Gets or sets the due date of the Task.</field>
/// <field name="estimatedCost" type="Number">Gets or sets the estimated cost of the Task.</field>
/// <field name="estimatedDuration" type="Number">Gets or sets the estimated duration of the Task.</field>
/// <field name="priority" type="TaskPriority">Gets or sets the priority of the Task.</field>
/// <field name="progress" type="Number">Gets or sets the progress of the Task.</field>
/// <field name="reminder" type="Reminder">Gets or sets the reminder of the Task.</field>
/// <field name="startDate" type="DateTime">Gets or sets the start date of the Task.</field>
/// <field name="status" type="TaskStatus">Gets or sets the status of the Task.</field>
/// <field name="subject" type="String">Gets or sets the subject of the Task.</field>
},
TaskEventArgs: function (task) {
/// <summary>Specifies data for Task related events.</summary>
/// <param name="task" type="Task">Task. The Task instance for which the event is raised.</param>
/// <field name="task" type="Task">Gets the Task instance for which the event is raised.</field>
},
TaskPriority: function() {
/// <summary>Specifies the priority of a task.</summary>
},
TaskStatus: function() {
/// <summary>Specifies status values for a task.</summary>
},
TimelineSettings: function () {
/// <summary>Defines properties that allow customization of the appearance of timelines in a Resource view.</summary>
/// <field name="format" type="String">Gets or sets the string used to format timeline headers.</field>
/// <field name="unit" type="TimeUnit">Gets the resolution of the timeline.</field>
/// <field name="unitCount" type="Number">Gets or sets the number of units between adjacent ticks in the timeline.</field>
},
TimeRange: function (start, end) {
/// <summary>Represents a date-time range.</summary>
/// <param name="start" type="DateTime">DateTime. The beginning of the range.</param>
/// <param name="end" type="DateTime">DateTime. The end of the range.</param>
/// <field name="end" type="DateTime">Gets or sets the end of the range.</field>
/// <field name="isEmpty" type="Boolean">Gets a value indicating whether the range is empty.</field>
/// <field name="start" type="DateTime">Gets or sets the beginning of the range.</field>
},
TimeSpan: function (ticks) {
/// <summary>Represents a time interval.</summary>
/// <param name="ticks" type="Number">Number. The number of ticks that represent the value of the time span.</param>
/// <field name="days" type="Number">Gets the number of days that represent the value of this TimeSpan.</field>
/// <field name="hours" type="Number">Gets the number of hours that represent the value of this TimeSpan.</field>
/// <field name="milliseconds" type="Number">Gets the number of milliseconds that represent the value of this TimeSpan.</field>
/// <field name="minutes" type="Number">Gets the number of minutes that represent the value of this TimeSpan.</field>
/// <field name="seconds" type="Number">Gets the number of seconds that represent the value of this TimeSpan.</field>
/// <field name="ticks" type="Number">Gets the number of ticks that represent the value of this TimeSpan.</field>
},
TimetableSettings: function () {
/// <summary>Defines properties that allow customization of the appearance of a Timetable view.</summary>
/// <field name="cellSize" type="Number">Gets or sets the size of time cells.</field>
/// <field name="cellTime" type="TimeSpan">Gets or sets the time length of a single cell in a timetable view, accurate to the nearest second.</field>
/// <field name="dates" type="ObservableCollection">Gets or sets the collection of dates to display in the view.</field>
/// <field name="endTime" type="Number">Gets or sets the end time of the timetable, expressed in minutes since the beginning of the day.</field>
/// <field name="groupHours" type="Boolean">Gets or sets a value indicating whether hours displayed in the timeline are grouped.</field>
/// <field name="headerStyle" type="MainHeaderStyle">Gets or sets the style of the view header.</field>
/// <field name="maxItems" type="Number">Gets or sets the maximum number of items to display in a cell.</field>
/// <field name="orientation" type="Orientation">Gets or sets the orientation of the view.</field>
/// <field name="reverseGrouping" type="Boolean">Gets or sets a value indicating whether grouping (if enabled) will be performed first by the resource, and then by the date.</field>
/// <field name="scrollStep" type="Number">Gets or sets the number of days to scroll when the user clicks the navigation buttons.</field>
/// <field name="showAM" type="Boolean">Gets or sets a value indicating whether the AM and PM suffixes are displayed.</field>
/// <field name="showDayHeader" type="Boolean">Gets or sets a value indicating whether to show the header displaying all-day items.</field>
/// <field name="showMinutes" type="Boolean">Gets or sets a value indicating whether to display the minutes of each hour in the timeline header when it displays whole hour cells.</field>
/// <field name="startTime" type="Number">Gets or sets the start time of the timetable, expressed in minutes since the beginning of the day.</field>
/// <field name="titleFormat" type="String">Gets or sets the string used to format the header title.</field>
/// <field name="twelveHourFormat" type="Boolean">Gets or sets value indicating whether to use a 12-hour format.</field>
},
TimeUnit: function() {
/// <summary>Specifies a time resolution.</summary>
},
VerticalHeaderStyle: function() {
/// <summary>Specifies the appearance of a vertical header in the calendar.</summary>
},
ViewCell: function () {
/// <summary>Encapsulates data for a datetime cell in a calendar view.</summary>
/// <field name="bgCell" type="DOMElement">Gets DOM element of the cell's content.</field>
/// <field name="endTime" type="DateTime">Gets the end time of the ViewCell.</field>
/// <field name="index" type="Number">Gets the index of the cell.</field>
/// <field name="isHeader" type="Boolean">Gets a value indicating whether this cell is a header cell.</field>
/// <field name="resource" type="Resource">Gets the resource associated with the cell.</field>
/// <field name="startTime" type="DateTime">Gets the start time of the ViewCell.</field>
/// <field name="title" type="DOMElement">Gets DOM element of the cell's header.</field>
},
WeekRangeSettings: function () {
/// <summary>Defines properties that allow customization of the appearance of a WeekRange view.</summary>
/// <field name="dayNamesHeaderStyle" type="HorizontalHeaderStyle">Gets or sets the style of the view day names header.</field>
/// <field name="dayOfWeekFormat" type="DayOfWeekFormat">Gets or sets the format of the day names displayed in the day names header.</field>
/// <field name="firstDayOfMonthFormat" type="String">Gets or sets the string used to format the cell header of the first day of each month.</field>
/// <field name="firstDayOfYearFormat" type="String">Gets or sets the string used to format the cell header of the first day of each year.</field>
/// <field name="generalFormat" type="String">Gets or sets the string used to format cells' headers.</field>
/// <field name="headerStyle" type="MainHeaderStyle">Gets or sets the style of the view header.</field>
/// <field name="maxItems" type="Number">Gets or sets the maximum number of items to display in a cell.</field>
/// <field name="titleFormat" type="String">Gets or sets the string used to format the header title.</field>
/// <field name="titleSeparator" type="String">Gets or sets the string used as a title separator.</field>
/// <field name="viewStyle" type="WeekRangeViewStyle">Gets or sets the style of the view.</field>
/// <field name="visibleRows" type="Number">Gets or sets the number of rows visible at the same time.</field>
/// <field name="expandDayHeaders" type="Boolean">Gets or sets a value indicating whether day headers should fill the whole day cell.</field>
},
WeekRangeViewStyle: function() {
/// <summary>Specifies whether there are multiple weeks displayed in WeekRange view.</summary>
},
YearlyRecurrence: function() {
/// <summary>Specifies types of yearly recurrence patterns.</summary>
},
__namespace: true
},
__namespace: true
};
MindFusion.Scheduling.BaseForm.prototype = {
addControl: control {
/// <summary>Adds the specified control to the collection of controls.</summary>
/// <param name="control" type="Object">Object. The control to add.</param>
},
clearControls: {
/// <summary>Clears all items from the collection of controls.</summary>
},
closeForm: formId {
/// <summary>Closes the form.</summary>
/// <param name="formId" type="String" optional="true">Optional. String. The Id of the form to be closed.</param>
},
col: {
/// <summary>Renders a column element.</summary>
},
createButton: options {
/// <summary>Creates a button with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created button.</returns>
},
createCheckBox: options {
/// <summary>Creates a check-box with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created check-box</returns>
},
createCheckBoxList: options {
/// <summary>Creates a check box list with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created check-box list.</returns>
},
createDropDownList: options {
/// <summary>Creates a drop-down list with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created drop-down list.</returns>
},
createEditBox: options {
/// <summary>Creates an edit box with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created edit box.</returns>
},
createRadioButton: options {
/// <summary>Creates a radio button with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created radio button.</returns>
},
createTextArea: options {
/// <summary>Creates a text area with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created text area.</returns>
},
createTextBox: options {
/// <summary>Creates a text box with the specified options.</summary>
/// <param name="options" type="Object">Object. Object, containing data for the new control.</param>
/// <returns type="Object">Object. The newly created text box.</returns>
},
divider: {
/// <summary>Renders a horizontal line divider.</summary>
},
drawButtons: {
/// <summary>Renders the form buttons.</summary>
},
drawContent: {
/// <summary>Renders the form content.</summary>
},
drawHeader: {
/// <summary>Renders the form header.</summary>
},
getControlValue: controlId {
/// <summary>Gets the value of the control with the specified id.</summary>
/// <param name="controlId" type="String">String. The id of the control to check.</param>
/// <returns type="Object">Object. The value of the control.</returns>
},
removeControl: control {
/// <summary>Removes the specified control from the collection of controls.</summary>
/// <param name="control" type="Object">Object. The control to remove.</param>
},
row: {
/// <summary>Renders a row element.</summary>
},
showForm: {
/// <summary>Renders the form.</summary>
}
};
MindFusion.Scheduling.BaseForm.__class = true;
MindFusion.Scheduling.ButtonEventArgs.prototype = {
};
MindFusion.Scheduling.ButtonEventArgs.__class = true;
MindFusion.Scheduling.Calendar.prototype = {
attach: {
/// <summary>Prepares the calendar for user interaction.</summary>
},
copyFrom: settings {
/// <summary>Copies property values for this Calendar from another object.</summary>
/// <param name="settings" type="Object">Object. An object containing property values.</param>
},
detach: {
/// <summary>Detaches calendar event handlers.</summary>
},
draw: {
/// <summary>Draws the calendar control.</summary>
/// <returns type="DomElement">DomElement. The Calendar element.</returns>
},
getCellAt: x, y {
/// <summary>Gets the calendar view cell that contains the specified coordinates.</summary>
/// <param name="x" type="Number">Number. The X-coordinate of the point.</param>
/// <param name="y" type="Number">Number. The Y-coordinate of the point.</param>
/// <returns type="ViewCell">ViewCell. The calendar view cell that contains the specified coordinates or null if there is no cell at point.</returns>
},
getTimeCell: time, isEndTime, resource {
/// <summary>Gets the calendar view cell that corresponds to the specified DateTime and resource.</summary>
/// <param name="time" type="DateTime">DateTime. The time to search for.</param>
/// <param name="isEndTime" type="Boolean" optional="true">Optional. Boolean. true if the index of the first interval is returned when the time is the boundary between two consecutive intervals;false if the index of the second interval is contained. The default is false.</param>
/// <param name="resource" type="Resource" optional="true">Optional. Resource. The resource to search for.</param>
/// <returns type="ViewCell">ViewCell. The cell that corresponds the specified DateTime and resource.</returns>
},
getTimeCells: startTime, endTime, isEndTime, resource {
/// <summary>Gets the calendar view cells that corresponds to the specified DateTime range and the specified Resource.</summary>
/// <param name="startTime" type="DateTime">DateTime. The start time of the range.</param>
/// <param name="endTime" type="DateTime" optional="true">Optional. DateTime. The end time of the range.</param>
/// <param name="isEndTime" type="Boolean" optional="true">Optional. Boolean. true if the index of the first interval is returned when the time is the boundary between two consecutive intervals;false if the index of the second interval is contained. The default is false.</param>
/// <param name="resource" type="Resource" optional="true">Optional. Resource. The resource to search for.</param>
/// <returns type="Array">An array of ViewCell objects that correspond to the specified DateTime range and Resource.</returns>
},
hasItemsToRemind: {
/// <summary>Checks if there are Item-s which reminder has not come yet.</summary>
/// <returns type="Boolean">true if there are items with a future reminder; otherwise false.</returns>
},
hasTasksToRemind: {
/// <summary>Checks if there are Task-s which reminder has not come yet.</summary>
/// <returns type="Boolean">true if there are tasks with a future reminder; otherwise false.</returns>
},
render: {
/// <summary>Draws the calendar control and prepares it for user interaction.</summary>
},
repaint: full {
/// <summary>Repaints the calendar contents.</summary>
/// <param name="full" type="Boolean" optional="true">Optional. Boolean. True to recreate calendar items, otherwise false.</param>
},
getCellItems: cell {
/// <summary>Gets the items, whose visual elements are contained in the specified calendar cell.</summary>
/// <param name="cell" type="ViewCell">ViewCell. The cell to check.</param>
/// <returns type="Array">Array. An array of Item objects whose visual elements are contained in the specified calendar cell.</returns>
},
getItemCells: item {
/// <summary>Gets the calendar view cells that hold the specified item's visual elements.</summary>
/// <param name="item" type="Item">Item. The item.</param>
/// <returns type="Array">Array. An array of ViewCell objects that hold the specified item's visual elements.</returns>
},
getItemDom: item {
/// <summary>Gets the specified item's visual elements.</summary>
/// <param name="item" type="Item">Item. The item.</param>
/// <returns type="Array">Array. An array of div objects that represent the specified item's visual elements.</returns>
}
};
MindFusion.Scheduling.Calendar.__class = true;
MindFusion.Scheduling.CalendarView.prototype = {
List: 0,
MonthRange: 1,
ResourceView: 2,
SingleMonth: 3,
Timetable: 4,
WeekRange: 5
};
MindFusion.Scheduling.CalendarView.__enum = true;
MindFusion.Scheduling.CancelEventArgs.prototype = {
};
MindFusion.Scheduling.CancelEventArgs.__class = true;
MindFusion.Scheduling.CellEventArgs.prototype = {
};
MindFusion.Scheduling.CellEventArgs.__class = true;
MindFusion.Scheduling.Contact.prototype = {
fromJson: json {
/// <summary>Deserializes this contact from a JSON string.</summary>
/// <param name="json" type="String">String. A string created by the toJson method.</param>
},
loadFromXml: element, context {
/// <summary>Loads the contact content from an XML element.</summary>
/// <param name="element" type="Element">Element. An XML DOM element that contains the contact's serialized content.</param>
/// <param name="context" type="XmlPersistContext">XmlPersistContext. An object providing contextual information about the serialization process and some helper serialization methods.</param>
},
saveToXml: element, context {
/// <summary>Saves the contact content into an XML element.</summary>
/// <param name="element" type="Element">Element. An XML DOM element that will contain the contact's data.</param>
/// <param name="context" type="XmlPersistContext">XmlPersistContext. An object providing contextual information about the serialization process and some helper serialization methods.</param>
},
toJson: {
/// <summary>Serializes this contact into a JSON string.</summary>
/// <returns type="String">String. A string containing the contact's JSON representation.</returns>
}
};
MindFusion.Scheduling.Contact.__class = true;
MindFusion.Scheduling.DailyRecurrence.prototype = {
ByDayInterval: 0,
EveryWeekend: 1,
EveryWorkday: 2
};
MindFusion.Scheduling.DailyRecurrence.__enum = true;
MindFusion.Scheduling.DateChangedEventArgs.prototype = {
};
MindFusion.Scheduling.DateChangedEventArgs.__class = true;
MindFusion.Scheduling.DateTime.prototype = {
__getDate: {
/// <summary>Gets the day component of this DateTime instance.</summary>
/// <returns type="Number">Number. The day of month (1-31).</returns>
},
__getDay: {
/// <summary>Gets the day of the week component of this DateTime instance.</summary>
/// <returns type="Number">Number. The day of the week (0-6). 0 is Sunday, 1 is Monday, etc.</returns>
},
__getFullYear: {
/// <summary>Gets the year component of this DateTime instance.</summary>
/// <returns type="Number">Number. The year (four digits).</returns>
},
__getHours: {
/// <summary>Gets the hours component of this DateTime instance.</summary>
/// <returns type="Number">Number. The hours (0-23).</returns>
},
__getMilliseconds: {
/// <summary>Gets the milliseconds component of this DateTime instance.</summary>
/// <returns type="Number">Number. The milliseconds (0-999).</returns>
},
__getMinutes: {
/// <summary>Gets the minutes component of this DateTime instance.</summary>
/// <returns type="Number">Number. The minutes (0-59).</returns>
},
__getMonth: {
/// <summary>Gets the month component of this DateTime instance.</summary>
/// <returns type="Number">Number. The month (0-11). 0 is January, 1 is February, etc.</returns>
},
__getSeconds: {
/// <summary>Gets the seconds component of this DateTime instance.</summary>
/// <returns type="Number">Number. The seconds (0-59).</returns>
},
__getTime: {
/// <summary>Gets the number of milliseconds between Jan 1 1970 00:00:00 and this DateTime instance.</summary>
/// <returns type="Number">Number. The number of milliseconds since Jan 1 1970 00:00:00.</returns>
},
__getTimezoneOffset: {
/// <summary>Gets the difference between GMT and local time in minutes.</summary>
/// <returns type="Number">Number. The difference between GMT and local time in minutes.</returns>
},
__getUTCDate: {
/// <summary>Gets the day component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The day of month (1-31).</returns>
},
__getUTCDay: {
/// <summary>Gets the day of the week component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The day of the week (0-6). 0 is Sunday, 1 is Monday, etc.</returns>
},
__getUTCFullYear: {
/// <summary>Gets the year component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The year (four digits).</returns>
},
__getUTCHours: {
/// <summary>Gets the hours component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The hours (0-23).</returns>
},
__getUTCMilliseconds: {
/// <summary>Gets the milliseconds component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The milliseconds (0-999).</returns>
},
__getUTCMinutes: {
/// <summary>Gets the minutes component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The minutes (0-59).</returns>
},
__getUTCMonth: {
/// <summary>Gets the month component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The month (0-11). 0 is January, 1 is February, etc.</returns>
},
__getUTCSeconds: {
/// <summary>Gets the seconds component of this DateTime instance, according to universal time.</summary>
/// <returns type="Number">Number. The seconds (0-59).</returns>
},
__setDate: day {
/// <summary>Sets the day component of this DateTime instance.</summary>
/// <param name="day" type="Number">Number. The day of month (1-31).</param>
},
__setFullYear: year, month, day {
/// <summary>Sets the year component of this DateTime instance.</summary>
/// <param name="year" type="Number">Number. A four-digit value representing the year.</param>
/// <param name="month" type="Number" optional="true">Optional. Number. An integer between 0 and 11 representing the month.</param>
/// <param name="day" type="Number" optional="true">Optional. Number. An integer between 1 and 31 representing the date.</param>
},
__setHours: hour, min, sec, millisec {
/// <summary>Sets the hours component of this DateTime instance.</summary>
/// <param name="hour" type="Number">Number. An integer between 0 and 23 representing the hour.</param>
/// <param name="min" type="Number" optional="true">Optional. Number. An integer between 0 and 59 representing the minutes.</param>
/// <param name="sec" type="Number" optional="true">Optional. Number. An integer between 0 and 59 representing the seconds.</param>
/// <param name="millisec" type="Number" optional="true">Optional. Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__setMilliseconds: millisec {
/// <summary>Sets the milliseconds component of this DateTime instance.</summary>
/// <param name="millisec" type="Number">Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__setMinutes: min, sec, millisec {
/// <summary>Sets the minutes component of this DateTime instance.</summary>
/// <param name="min" type="Number">Number. An integer between 0 and 59 representing the minutes.</param>
/// <param name="sec" type="Number" optional="true">Optional. Number. An integer between 0 and 59 representing the seconds.</param>
/// <param name="millisec" type="Number" optional="true">Optional. Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__setSeconds: sec, millisec {
/// <summary>Sets the seconds component of this DateTime instance.</summary>
/// <param name="sec" type="Number">Number. An integer between 0 and 59 representing the seconds.</param>
/// <param name="millisec" type="Number" optional="true">Optional. Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__setTime: millisec {
/// <summary>Sets a date and time by adding or subtracting a specified number of milliseconds to/from midnight 1 Jan 1970.</summary>
/// <param name="millisec" type="Number">Number. The number of milliseconds to be added to, or subtracted from, midnight 1 Jan 1970.</param>
},
__setUTCDate: day {
/// <summary>Sets the day component of this DateTime instance, according to universal time.</summary>
/// <param name="day" type="Number">Number. The day of month (1-31).</param>
},
__setUTCFullYear: year, month, day {
/// <summary>Sets the year component of this DateTime instance, according to universal time.</summary>
/// <param name="year" type="Number">Number. A four-digit value representing the year.</param>
/// <param name="month" type="Number" optional="true">Optional. Number. An integer between 0 and 11 representing the month.</param>
/// <param name="day" type="Number" optional="true">Optional. Number. An integer between 1 and 31 representing the date.</param>
},
__setUTCHours: hour, min, sec, millisec {
/// <summary>Sets the hours component of this DateTime instance, according to universal time.</summary>
/// <param name="hour" type="Number">Number. An integer between 0 and 23 representing the hour.</param>
/// <param name="min" type="Number" optional="true">Optional. Number. An integer between 0 and 59 representing the minutes.</param>
/// <param name="sec" type="Number" optional="true">Optional. Number. An integer between 0 and 59 representing the seconds.</param>
/// <param name="millisec" type="Number" optional="true">Optional. Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__setUTCMilliseconds: millisec {
/// <summary>Sets the milliseconds component of this DateTime instance, according to universal time.</summary>
/// <param name="millisec" type="Number">Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__setUTCMinutes: min, sec, millisec {
/// <summary>Sets the minutes component of this DateTime instance, according to universal time.</summary>
/// <param name="min" type="Number">Number. An integer between 0 and 59 representing the minutes.</param>
/// <param name="sec" type="Number" optional="true">Optional. Number. An integer between 0 and 59 representing the seconds.</param>
/// <param name="millisec" type="Number" optional="true">Optional. Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__setUTCSeconds: sec, millisec {
/// <summary>Sets the seconds component of this DateTime instance, according to universal time.</summary>
/// <param name="sec" type="Number">Number. An integer between 0 and 59 representing the seconds.</param>
/// <param name="millisec" type="Number" optional="true">Optional. Number. An integer between 0 and 999 representing the milliseconds.</param>
},
__toDateString: {
/// <summary>Converts the date component of this DateTime instance to a readable string.</summary>
/// <returns type="String">String. A readable string representation of the date component of this DateTime instance.</returns>
},
__toLocaleDateString: {
/// <summary>Converts the date component of this DateTime instance to a readable string, using locale conventions.</summary>
/// <returns type="String">String. A readable locale string representation of the date component of this DateTime instance.</returns>
},
__toLocaleString: {
/// <summary>Converts this DateTime instance to a readable string, using locale conventions.</summary>
/// <returns type="String">String. A readable locale string representation of this DateTime instance.</returns>
},
__toLocaleTimeString: {
/// <summary>Converts the time component of this DateTime instance to a readable string, using locale conventions.</summary>
/// <returns type="String">String. A readable locale string representation of the time component of this DateTime instance.</returns>
},
__toString: {
/// <summary>Converts this DateTime instance to a readable string.</summary>
/// <returns type="String">String. A readable string representation of this DateTime instance.</returns>
},
__toTimeString: {
/// <summary>Converts the time component of this DateTime instance to a readable string.</summary>
/// <returns type="String">String. A readable string representation of the time component of this DateTime instance.</returns>
},
__toUTCString: {
/// <summary>Converts this DateTime instance to a readable string, according to universal time.</summary>
/// <returns type="String">String. A readable string representation of this DateTime instance.</returns>
},
__valueOf: {
/// <summary>Represents the primitive value of this DateTime object.</summary>
/// <returns type="Number">Number. The primitive value of this DateTime object.</returns>
},
addDays: {
},
addHours: {
},
addMilliseconds: {
},
addMinutes: {
},
addMonths: {
},
addSeconds: {
},
addYears: {
},
clone: {
/// <summary>Returns a copy of the current DateTime object.</summary>
/// <returns type="DateTime">The cloned DateTime object.</returns>
},
combine: date, time {
/// <summary>Combines the date component of a DateTime object and the time component of another DateTime object into a new DateTime object.</summary>
/// <param name="date" type="DateTime">DateTime. A DateTime object to get the date part from.</param>
/// <param name="time" type="DateTime">DateTime. A DateTime object to get the time part from.</param>
/// <returns type="DateTime">The new combined DateTime object.</returns>
},
compareTo: date {
/// <summary>Compares the current DateTime instance with another DateTime object and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.</summary>
/// <param name="date" type="DateTime">DateTime. A DateTime object to compare with this instance.</param>
/// <returns type="Number">Number. A value that indicates the relative order of the DateTime objects being compared.</returns>
},
daysBetween: date1, date2 {
/// <summary>Returns the number of days between two DateTime instances.</summary>
/// <param name="date1" type="DateTime">DateTime. The first DateTime instance.</param>
/// <param name="date2" type="DateTime">DateTime. The second DateTime instance.</param>
/// <returns type="Number">Number. The number of days.</returns>
},
equals: date {
/// <summary>Returns a value indicating whether two DateTime objects are equal.</summary>
/// <param name="date" type="DateTime">DateTime. The DateTime object to compare with.</param>
/// <returns type="Boolean">Boolean. True if the values are equal, otherwise false.</returns>
},
fromDateParts: year, month, day, hours, minutes, seconds, milliseconds {
/// <summary>Creates a new DateTime object, by specifying its different date and time components.</summary>
/// <param name="year" type="Number">Number. The year component.</param>
/// <param name="month" type="Number">Number. The month component (0-11).</param>
/// <param name="day" type="Number" optional="true">Optional. Number. The day component (1-31). If not provided, a default value of 1 will be used.</param>
/// <param name="hours" type="Number" optional="true">Optional. Number. The hours component (0-23). If not provided, a default value of 0 will be used.</param>
/// <param name="minutes" type="Number" optional="true">Optional. Number. The minutes component (0-59). If not provided, a default value of 0 will be used.</param>
/// <param name="seconds" type="Number" optional="true">Optional. Number. The seconds component (0-59). If not provided, a default value of 0 will be used.</param>
/// <param name="milliseconds" type="Number" optional="true">Optional. Number. The milliseconds component (0-999). If not provided, a default value of 0 will be used.</param>
/// <returns type="DateTime">The new DateTime object, or null if a DateTime instance cannot be created from the provided values.</returns>
},
fromDateString: dateString {
/// <summary>Creates a new DateTime object from a provided date string.</summary>
/// <param name="dateString" type="String">String. The date string to create the DateTime from.</param>
/// <returns type="DateTime">DateTime. The new DateTime object, or null if a DateTime instance cannot be created from the provided string.</returns>
},
fromMilliseconds: milliseconds {
/// <summary>Creates a new DateTime object from the number of milliseconds since Jan 1st 1970.</summary>
/// <param name="milliseconds" type="Number">Number. The number of milliseconds since Jan 1st 1970;</param>
/// <returns type="DateTime">DateTime. The new DateTime object, or null if a DateTime instance cannot be created from the provided value.</returns>
},
getDate: {
/// <summary>For internal use only.</summary>
/// <returns type="Object"></returns>
},
getDayOfMonth: date {
/// <summary>Returns the day of the month of the specified DateTime.</summary>
/// <param name="date" type="DateTime">A DateTime instance.</param>
/// <returns type="Number">Number. The day of the month.</returns>
},
getDayOfWeek: date {
/// <summary>Returns the day of the week of the specified DateTime.</summary>
/// <param name="date" type="DateTime">A DateTime instance.</param>
/// <returns type="Number">Number. The day of the week.</returns>
},