@mescius/wijmo.angular2legacy.grid.multirow 5.20232.939

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts ADDED
@@ -0,0 +1,771 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+ /**
14
+ * {@module wijmo.angular2legacy.grid.multirow}
15
+ * Contains Angular 2 components for the <b>wijmo.grid.multirow</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.grid.multirow</b> is an external TypeScript module that can be imported to your code
18
+ * using its ambient module name. For example:
19
+ *
20
+ * <pre>import * as wjMultiRow from 'wijmo/wijmo.angular2legacy.grid.multirow';
21
+ * &nbsp;
22
+ * &#64;Component({
23
+ * directives: [wjMultiRow.WjMultiRow],
24
+ * template: `&lt;wj-multi-row&gt;&lt;/wj-multi-row&gt;`,
25
+ * selector: 'my-cmp',
26
+ * })
27
+ * export class MyCmp {
28
+ * }</pre>
29
+ *
30
+ */
31
+ /**
32
+ *
33
+ */
34
+ export declare var ___keepComment: any;
35
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, ViewContainerRef, TemplateRef, OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
36
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
37
+ import * as wjcGridMultirow from '@grapecity/wijmo.grid.multirow';
38
+ import * as wjcGrid from '@grapecity/wijmo.grid';
39
+ import * as wjGrid from '@grapecity/wijmo.angular2legacy.grid';
40
+ declare var wjMultiRowMeta: IWjComponentMeta;
41
+ export { wjMultiRowMeta };
42
+ /**
43
+ * Angular 2 component for the {@link wijmo.grid.multirow.MultiRow} control.
44
+ *
45
+ * Use the <b>wj-multi-row</b> component to add <b>MultiRow</b> controls to your
46
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
47
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
48
+ *
49
+ * The <b>WjMultiRow</b> component is derived from the <b>MultiRow</b> control and
50
+ * inherits all its properties, events and methods.
51
+ *
52
+ * The <b>wj-multi-row</b> component may contain the following child components:
53
+ * {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCellGroup}
54
+ * and {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCellTemplate}.
55
+ */
56
+ export declare class WjMultiRow extends wjcGridMultirow.MultiRow implements OnInit, OnDestroy, AfterViewInit {
57
+ cdRef: ChangeDetectorRef;
58
+ static readonly meta: IWjComponentMetadata;
59
+ private _wjBehaviour;
60
+ /**
61
+ * Indicates whether the component has been initialized by Angular.
62
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
63
+ */
64
+ isInitialized: boolean;
65
+ /**
66
+ * This event is triggered after the component has been initialized by Angular, that is
67
+ * all bound properties have been assigned and child components (if any) have been initialized.
68
+ */
69
+ initialized: EventEmitter<any>;
70
+ /**
71
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
72
+ * Default value is ''.
73
+ */
74
+ wjModelProperty: string;
75
+ /**
76
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
77
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
78
+ */
79
+ asyncBindings: boolean;
80
+ /**
81
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
82
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
83
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
84
+ */
85
+ gotFocusNg: EventEmitter<any>;
86
+ /**
87
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
88
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
89
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
90
+ */
91
+ lostFocusNg: EventEmitter<any>;
92
+ /**
93
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
94
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
95
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
96
+ */
97
+ refreshingNg: EventEmitter<any>;
98
+ /**
99
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
100
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
101
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
102
+ */
103
+ refreshedNg: EventEmitter<any>;
104
+ /**
105
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
106
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
107
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
108
+ */
109
+ invalidInputNg: EventEmitter<any>;
110
+ /**
111
+ * Angular (EventEmitter) version of the Wijmo <b>beginningEdit</b> event for programmatic access.
112
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
113
+ * In template bindings use the conventional <b>beginningEdit</b> Wijmo event name.
114
+ */
115
+ beginningEditNg: EventEmitter<any>;
116
+ /**
117
+ * Angular (EventEmitter) version of the Wijmo <b>cellEditEnded</b> event for programmatic access.
118
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
119
+ * In template bindings use the conventional <b>cellEditEnded</b> Wijmo event name.
120
+ */
121
+ cellEditEndedNg: EventEmitter<any>;
122
+ /**
123
+ * Angular (EventEmitter) version of the Wijmo <b>cellEditEnding</b> event for programmatic access.
124
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
125
+ * In template bindings use the conventional <b>cellEditEnding</b> Wijmo event name.
126
+ */
127
+ cellEditEndingNg: EventEmitter<any>;
128
+ /**
129
+ * Angular (EventEmitter) version of the Wijmo <b>prepareCellForEdit</b> event for programmatic access.
130
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
131
+ * In template bindings use the conventional <b>prepareCellForEdit</b> Wijmo event name.
132
+ */
133
+ prepareCellForEditNg: EventEmitter<any>;
134
+ /**
135
+ * Angular (EventEmitter) version of the Wijmo <b>formatItem</b> event for programmatic access.
136
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
137
+ * In template bindings use the conventional <b>formatItem</b> Wijmo event name.
138
+ */
139
+ formatItemNg: EventEmitter<any>;
140
+ /**
141
+ * Angular (EventEmitter) version of the Wijmo <b>resizingColumn</b> event for programmatic access.
142
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
143
+ * In template bindings use the conventional <b>resizingColumn</b> Wijmo event name.
144
+ */
145
+ resizingColumnNg: EventEmitter<any>;
146
+ /**
147
+ * Angular (EventEmitter) version of the Wijmo <b>resizedColumn</b> event for programmatic access.
148
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
149
+ * In template bindings use the conventional <b>resizedColumn</b> Wijmo event name.
150
+ */
151
+ resizedColumnNg: EventEmitter<any>;
152
+ /**
153
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizingColumn</b> event for programmatic access.
154
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
155
+ * In template bindings use the conventional <b>autoSizingColumn</b> Wijmo event name.
156
+ */
157
+ autoSizingColumnNg: EventEmitter<any>;
158
+ /**
159
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizedColumn</b> event for programmatic access.
160
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
161
+ * In template bindings use the conventional <b>autoSizedColumn</b> Wijmo event name.
162
+ */
163
+ autoSizedColumnNg: EventEmitter<any>;
164
+ /**
165
+ * Angular (EventEmitter) version of the Wijmo <b>draggingColumn</b> event for programmatic access.
166
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
167
+ * In template bindings use the conventional <b>draggingColumn</b> Wijmo event name.
168
+ */
169
+ draggingColumnNg: EventEmitter<any>;
170
+ /**
171
+ * Angular (EventEmitter) version of the Wijmo <b>draggingColumnOver</b> event for programmatic access.
172
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
173
+ * In template bindings use the conventional <b>draggingColumnOver</b> Wijmo event name.
174
+ */
175
+ draggingColumnOverNg: EventEmitter<any>;
176
+ /**
177
+ * Angular (EventEmitter) version of the Wijmo <b>draggedColumn</b> event for programmatic access.
178
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
179
+ * In template bindings use the conventional <b>draggedColumn</b> Wijmo event name.
180
+ */
181
+ draggedColumnNg: EventEmitter<any>;
182
+ /**
183
+ * Angular (EventEmitter) version of the Wijmo <b>sortingColumn</b> event for programmatic access.
184
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
185
+ * In template bindings use the conventional <b>sortingColumn</b> Wijmo event name.
186
+ */
187
+ sortingColumnNg: EventEmitter<any>;
188
+ /**
189
+ * Angular (EventEmitter) version of the Wijmo <b>sortedColumn</b> event for programmatic access.
190
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
191
+ * In template bindings use the conventional <b>sortedColumn</b> Wijmo event name.
192
+ */
193
+ sortedColumnNg: EventEmitter<any>;
194
+ /**
195
+ * Angular (EventEmitter) version of the Wijmo <b>pinningColumn</b> event for programmatic access.
196
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
197
+ * In template bindings use the conventional <b>pinningColumn</b> Wijmo event name.
198
+ */
199
+ pinningColumnNg: EventEmitter<any>;
200
+ /**
201
+ * Angular (EventEmitter) version of the Wijmo <b>pinnedColumn</b> event for programmatic access.
202
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
203
+ * In template bindings use the conventional <b>pinnedColumn</b> Wijmo event name.
204
+ */
205
+ pinnedColumnNg: EventEmitter<any>;
206
+ /**
207
+ * Angular (EventEmitter) version of the Wijmo <b>resizingRow</b> event for programmatic access.
208
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
209
+ * In template bindings use the conventional <b>resizingRow</b> Wijmo event name.
210
+ */
211
+ resizingRowNg: EventEmitter<any>;
212
+ /**
213
+ * Angular (EventEmitter) version of the Wijmo <b>resizedRow</b> event for programmatic access.
214
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
215
+ * In template bindings use the conventional <b>resizedRow</b> Wijmo event name.
216
+ */
217
+ resizedRowNg: EventEmitter<any>;
218
+ /**
219
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizingRow</b> event for programmatic access.
220
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
221
+ * In template bindings use the conventional <b>autoSizingRow</b> Wijmo event name.
222
+ */
223
+ autoSizingRowNg: EventEmitter<any>;
224
+ /**
225
+ * Angular (EventEmitter) version of the Wijmo <b>autoSizedRow</b> event for programmatic access.
226
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
227
+ * In template bindings use the conventional <b>autoSizedRow</b> Wijmo event name.
228
+ */
229
+ autoSizedRowNg: EventEmitter<any>;
230
+ /**
231
+ * Angular (EventEmitter) version of the Wijmo <b>draggingRow</b> event for programmatic access.
232
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
233
+ * In template bindings use the conventional <b>draggingRow</b> Wijmo event name.
234
+ */
235
+ draggingRowNg: EventEmitter<any>;
236
+ /**
237
+ * Angular (EventEmitter) version of the Wijmo <b>draggingRowOver</b> event for programmatic access.
238
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
239
+ * In template bindings use the conventional <b>draggingRowOver</b> Wijmo event name.
240
+ */
241
+ draggingRowOverNg: EventEmitter<any>;
242
+ /**
243
+ * Angular (EventEmitter) version of the Wijmo <b>draggedRow</b> event for programmatic access.
244
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
245
+ * In template bindings use the conventional <b>draggedRow</b> Wijmo event name.
246
+ */
247
+ draggedRowNg: EventEmitter<any>;
248
+ /**
249
+ * Angular (EventEmitter) version of the Wijmo <b>deletingRow</b> event for programmatic access.
250
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
251
+ * In template bindings use the conventional <b>deletingRow</b> Wijmo event name.
252
+ */
253
+ deletingRowNg: EventEmitter<any>;
254
+ /**
255
+ * Angular (EventEmitter) version of the Wijmo <b>deletedRow</b> event for programmatic access.
256
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
257
+ * In template bindings use the conventional <b>deletedRow</b> Wijmo event name.
258
+ */
259
+ deletedRowNg: EventEmitter<any>;
260
+ /**
261
+ * Angular (EventEmitter) version of the Wijmo <b>loadingRows</b> event for programmatic access.
262
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
263
+ * In template bindings use the conventional <b>loadingRows</b> Wijmo event name.
264
+ */
265
+ loadingRowsNg: EventEmitter<any>;
266
+ /**
267
+ * Angular (EventEmitter) version of the Wijmo <b>loadedRows</b> event for programmatic access.
268
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
269
+ * In template bindings use the conventional <b>loadedRows</b> Wijmo event name.
270
+ */
271
+ loadedRowsNg: EventEmitter<any>;
272
+ /**
273
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditStarting</b> event for programmatic access.
274
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
275
+ * In template bindings use the conventional <b>rowEditStarting</b> Wijmo event name.
276
+ */
277
+ rowEditStartingNg: EventEmitter<any>;
278
+ /**
279
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditStarted</b> event for programmatic access.
280
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
281
+ * In template bindings use the conventional <b>rowEditStarted</b> Wijmo event name.
282
+ */
283
+ rowEditStartedNg: EventEmitter<any>;
284
+ /**
285
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditEnding</b> event for programmatic access.
286
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
287
+ * In template bindings use the conventional <b>rowEditEnding</b> Wijmo event name.
288
+ */
289
+ rowEditEndingNg: EventEmitter<any>;
290
+ /**
291
+ * Angular (EventEmitter) version of the Wijmo <b>rowEditEnded</b> event for programmatic access.
292
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
293
+ * In template bindings use the conventional <b>rowEditEnded</b> Wijmo event name.
294
+ */
295
+ rowEditEndedNg: EventEmitter<any>;
296
+ /**
297
+ * Angular (EventEmitter) version of the Wijmo <b>rowAdded</b> event for programmatic access.
298
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
299
+ * In template bindings use the conventional <b>rowAdded</b> Wijmo event name.
300
+ */
301
+ rowAddedNg: EventEmitter<any>;
302
+ /**
303
+ * Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanging</b> event for programmatic access.
304
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
305
+ * In template bindings use the conventional <b>groupCollapsedChanging</b> Wijmo event name.
306
+ */
307
+ groupCollapsedChangingNg: EventEmitter<any>;
308
+ /**
309
+ * Angular (EventEmitter) version of the Wijmo <b>groupCollapsedChanged</b> event for programmatic access.
310
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
311
+ * In template bindings use the conventional <b>groupCollapsedChanged</b> Wijmo event name.
312
+ */
313
+ groupCollapsedChangedNg: EventEmitter<any>;
314
+ /**
315
+ * Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanging</b> event for programmatic access.
316
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
317
+ * In template bindings use the conventional <b>columnGroupCollapsedChanging</b> Wijmo event name.
318
+ */
319
+ columnGroupCollapsedChangingNg: EventEmitter<any>;
320
+ /**
321
+ * Angular (EventEmitter) version of the Wijmo <b>columnGroupCollapsedChanged</b> event for programmatic access.
322
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
323
+ * In template bindings use the conventional <b>columnGroupCollapsedChanged</b> Wijmo event name.
324
+ */
325
+ columnGroupCollapsedChangedNg: EventEmitter<any>;
326
+ /**
327
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
328
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
329
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
330
+ */
331
+ itemsSourceChangingNg: EventEmitter<any>;
332
+ /**
333
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
334
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
335
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
336
+ */
337
+ itemsSourceChangedNg: EventEmitter<any>;
338
+ /**
339
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanging</b> event for programmatic access.
340
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
341
+ * In template bindings use the conventional <b>selectionChanging</b> Wijmo event name.
342
+ */
343
+ selectionChangingNg: EventEmitter<any>;
344
+ /**
345
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
346
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
347
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
348
+ */
349
+ selectionChangedNg: EventEmitter<any>;
350
+ /**
351
+ * Angular (EventEmitter) version of the Wijmo <b>scrollPositionChanged</b> event for programmatic access.
352
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
353
+ * In template bindings use the conventional <b>scrollPositionChanged</b> Wijmo event name.
354
+ */
355
+ scrollPositionChangedNg: EventEmitter<any>;
356
+ /**
357
+ * Angular (EventEmitter) version of the Wijmo <b>updatingView</b> event for programmatic access.
358
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
359
+ * In template bindings use the conventional <b>updatingView</b> Wijmo event name.
360
+ */
361
+ updatingViewNg: EventEmitter<any>;
362
+ /**
363
+ * Angular (EventEmitter) version of the Wijmo <b>updatedView</b> event for programmatic access.
364
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
365
+ * In template bindings use the conventional <b>updatedView</b> Wijmo event name.
366
+ */
367
+ updatedViewNg: EventEmitter<any>;
368
+ /**
369
+ * Angular (EventEmitter) version of the Wijmo <b>updatingLayout</b> event for programmatic access.
370
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
371
+ * In template bindings use the conventional <b>updatingLayout</b> Wijmo event name.
372
+ */
373
+ updatingLayoutNg: EventEmitter<any>;
374
+ /**
375
+ * Angular (EventEmitter) version of the Wijmo <b>updatedLayout</b> event for programmatic access.
376
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
377
+ * In template bindings use the conventional <b>updatedLayout</b> Wijmo event name.
378
+ */
379
+ updatedLayoutNg: EventEmitter<any>;
380
+ /**
381
+ * Angular (EventEmitter) version of the Wijmo <b>pasting</b> event for programmatic access.
382
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
383
+ * In template bindings use the conventional <b>pasting</b> Wijmo event name.
384
+ */
385
+ pastingNg: EventEmitter<any>;
386
+ /**
387
+ * Angular (EventEmitter) version of the Wijmo <b>pasted</b> event for programmatic access.
388
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
389
+ * In template bindings use the conventional <b>pasted</b> Wijmo event name.
390
+ */
391
+ pastedNg: EventEmitter<any>;
392
+ /**
393
+ * Angular (EventEmitter) version of the Wijmo <b>pastingCell</b> event for programmatic access.
394
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
395
+ * In template bindings use the conventional <b>pastingCell</b> Wijmo event name.
396
+ */
397
+ pastingCellNg: EventEmitter<any>;
398
+ /**
399
+ * Angular (EventEmitter) version of the Wijmo <b>pastedCell</b> event for programmatic access.
400
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
401
+ * In template bindings use the conventional <b>pastedCell</b> Wijmo event name.
402
+ */
403
+ pastedCellNg: EventEmitter<any>;
404
+ /**
405
+ * Angular (EventEmitter) version of the Wijmo <b>copying</b> event for programmatic access.
406
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
407
+ * In template bindings use the conventional <b>copying</b> Wijmo event name.
408
+ */
409
+ copyingNg: EventEmitter<any>;
410
+ /**
411
+ * Angular (EventEmitter) version of the Wijmo <b>copied</b> event for programmatic access.
412
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
413
+ * In template bindings use the conventional <b>copied</b> Wijmo event name.
414
+ */
415
+ copiedNg: EventEmitter<any>;
416
+ /**
417
+ * Angular (EventEmitter) version of the Wijmo <b>collapsedHeadersChanging</b> event for programmatic access.
418
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
419
+ * In template bindings use the conventional <b>collapsedHeadersChanging</b> Wijmo event name.
420
+ */
421
+ collapsedHeadersChangingNg: EventEmitter<any>;
422
+ /**
423
+ * Angular (EventEmitter) version of the Wijmo <b>collapsedHeadersChanged</b> event for programmatic access.
424
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
425
+ * In template bindings use the conventional <b>collapsedHeadersChanged</b> Wijmo event name.
426
+ */
427
+ collapsedHeadersChangedNg: EventEmitter<any>;
428
+ /**
429
+ * This event is used to implement two-way binding to the <b>collapsedHeaders</b> property.
430
+ * It's triggered when the property value changes, with the event argument holding the new property value.
431
+ * You can bind handlers to this event in templates using the <b>collapsedHeadersChange</b> event name.
432
+ */
433
+ collapsedHeadersChangePC: EventEmitter<any>;
434
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any, cdRef: ChangeDetectorRef);
435
+ /**
436
+ * If you create a custom component inherited from a Wijmo component, you can override this
437
+ * method and perform necessary initializations that you usually do in a class constructor.
438
+ * This method is called in the last line of a Wijmo component constructor and allows you
439
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
440
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
441
+ */
442
+ created(): void;
443
+ ngOnInit(): void;
444
+ ngAfterViewInit(): void;
445
+ ngOnDestroy(): void;
446
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
447
+ _edtFocus: boolean;
448
+ startEditing(fullEdit?: boolean, r?: number, c?: number, focus?: boolean, evt?: any): boolean;
449
+ onCellEditEnding(e: wjcGrid.CellEditEndingEventArgs): boolean;
450
+ }
451
+ declare var wjMultiRowCellMeta: IWjComponentMeta;
452
+ export { wjMultiRowCellMeta };
453
+ /**
454
+ * Angular 2 component for the {@link wijmo.grid.multirow.MultiRowCell} class.
455
+ *
456
+ * The <b>wj-multi-row-cell</b> component must be
457
+ * contained in a {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCellGroup} component.
458
+ *
459
+ * Use the <b>wj-multi-row-cell</b> component to add <b>MultiRowCell</b> controls to your
460
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
461
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
462
+ *
463
+ * The <b>WjMultiRowCell</b> component is derived from the <b>MultiRowCell</b> class and
464
+ * inherits all its properties, events and methods.
465
+ *
466
+ * The <b>wj-multi-row-cell</b> component may contain a {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCellTemplate} child component.
467
+ */
468
+ export declare class WjMultiRowCell extends wjcGridMultirow.MultiRowCell implements OnInit, OnDestroy, AfterViewInit {
469
+ cdRef: ChangeDetectorRef;
470
+ static readonly meta: IWjComponentMetadata;
471
+ private _wjBehaviour;
472
+ /**
473
+ * Indicates whether the component has been initialized by Angular.
474
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
475
+ */
476
+ isInitialized: boolean;
477
+ /**
478
+ * This event is triggered after the component has been initialized by Angular, that is
479
+ * all bound properties have been assigned and child components (if any) have been initialized.
480
+ */
481
+ initialized: EventEmitter<any>;
482
+ /**
483
+ * Gets or sets a name of a property that this component is assigned to.
484
+ * Default value is 'cells'.
485
+ */
486
+ wjProperty: string;
487
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any, cdRef: ChangeDetectorRef);
488
+ /**
489
+ * If you create a custom component inherited from a Wijmo component, you can override this
490
+ * method and perform necessary initializations that you usually do in a class constructor.
491
+ * This method is called in the last line of a Wijmo component constructor and allows you
492
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
493
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
494
+ */
495
+ created(): void;
496
+ ngOnInit(): void;
497
+ ngAfterViewInit(): void;
498
+ ngOnDestroy(): void;
499
+ }
500
+ declare var wjMultiRowCellGroupMeta: IWjComponentMeta;
501
+ export { wjMultiRowCellGroupMeta };
502
+ /**
503
+ * Angular 2 component for the {@link wijmo.grid.multirow.MultiRowCellGroup} class.
504
+ *
505
+ * The <b>wj-multi-row-cell-group</b> component must be
506
+ * contained in a {@link wijmo.angular2legacy.grid.multirow.WjMultiRow} component.
507
+ *
508
+ * Use the <b>wj-multi-row-cell-group</b> component to add <b>MultiRowCellGroup</b> controls to your
509
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
510
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
511
+ *
512
+ * The <b>WjMultiRowCellGroup</b> component is derived from the <b>MultiRowCellGroup</b> class and
513
+ * inherits all its properties, events and methods.
514
+ *
515
+ * The <b>wj-multi-row-cell-group</b> component may contain a {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} child component.
516
+ */
517
+ export declare class WjMultiRowCellGroup extends wjcGridMultirow.MultiRowCellGroup implements OnInit, OnDestroy, AfterViewInit {
518
+ cdRef: ChangeDetectorRef;
519
+ static readonly meta: IWjComponentMetadata;
520
+ private _wjBehaviour;
521
+ /**
522
+ * Indicates whether the component has been initialized by Angular.
523
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
524
+ */
525
+ isInitialized: boolean;
526
+ /**
527
+ * This event is triggered after the component has been initialized by Angular, that is
528
+ * all bound properties have been assigned and child components (if any) have been initialized.
529
+ */
530
+ initialized: EventEmitter<any>;
531
+ /**
532
+ * Gets or sets a name of a property that this component is assigned to.
533
+ * Default value is 'layoutDefinition'.
534
+ */
535
+ wjProperty: string;
536
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any, cdRef: ChangeDetectorRef);
537
+ /**
538
+ * If you create a custom component inherited from a Wijmo component, you can override this
539
+ * method and perform necessary initializations that you usually do in a class constructor.
540
+ * This method is called in the last line of a Wijmo component constructor and allows you
541
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
542
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
543
+ */
544
+ created(): void;
545
+ ngOnInit(): void;
546
+ ngAfterViewInit(): void;
547
+ ngOnDestroy(): void;
548
+ }
549
+ /**
550
+ * Angular 2 directive for the {@link MultiRow} cell templates.
551
+ *
552
+ * The <b>wjMultiRowCellTemplate</b> directive defines a template for a certain
553
+ * cell type in {@link MultiRow}. The template should be defined on a <b>&lt;ng-template&gt;</b> element
554
+ * and must contain a <b>cellType</b> attribute that
555
+ * specifies the {@link wijmo.angular2legacy.grid.CellTemplateType}. Depending on the template's cell type,
556
+ * the <b>&lt;ng-template&gt;</b> element with the <b>wjMultiRowCellTemplate</b> directive must be a child
557
+ * of either {@link wijmo.angular2legacy.grid.multirow.WjMultiRow}
558
+ * or {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} components.
559
+ *
560
+ * Column-specific cell templates must be contained in <b>wj-multi-row-cell</b>
561
+ * components, and cells that are not column-specific (like row header or top left cells)
562
+ * must be contained in the <b>wj-multi-row</b> component.
563
+ *
564
+ * The <b>&lt;ng-template&gt;</b> element with the <b>wjMultiRowCellTemplate</b> directive
565
+ * may contain an arbitrary HTML fragment with Angular 2 interpolation expressions and
566
+ * other components and directives.
567
+ *
568
+ * Bindings in HTML fragment can use the <b>cell</b> local template variable containing the cell context object,
569
+ * with <b>col</b>, <b>row</b>, and <b>item</b> properties that refer to the {@link MultiRowCell},
570
+ * {@link Row}, and <b>Row.dataItem</b> objects pertaining to the cell.
571
+ *
572
+ * For cell types like <b>Group</b> and <b>CellEdit</b>, an additional <b>value</b>
573
+ * property containing an unformatted cell value is provided. For example, here is a
574
+ * {@link MultiRow} control with templates for row header cells and, regular
575
+ * and column header cells of the Country column:
576
+ *
577
+ * ```typescript
578
+ * // component.ts
579
+ * import * as wjMultiRow from '@grapecity/wijmo.angular2legacy.grid.multirow';
580
+ *
581
+ * @Component({
582
+ * templateUrl: './component.html',
583
+ * selector: 'my-cmp',
584
+ * })
585
+ * export class MyCmp {
586
+ * data: any[];
587
+ * }
588
+ * ```
589
+ * ```html
590
+ * <!-- component.html -->
591
+ * <wj-multi-row [itemsSource]="data">
592
+ * <ng-template wjMultiRowCellTemplate [cellType]="'RowHeader'" let-cell="cell">
593
+ * {{cell.row.index}}
594
+ * </ng-template>
595
+ * <ng-template wjMultiRowCellTemplate [cellType]="'RowHeaderEdit'">
596
+ * ...
597
+ * </ng-template>
598
+ *
599
+ * <wj-multi-row-cell-group header="Statistics">
600
+ * <wj-multi-row-cell [header]="'Country'" [binding]="'country'">
601
+ * <ng-template wjMultiRowCellTemplate [cellType]="'ColumnHeader'" let-cell="cell">
602
+ * <img src="resources/globe.png" />
603
+ * {{cell.col.header}}
604
+ * </ng-template>
605
+ * <ng-template wjMultiRowCellTemplate [cellType]="'Cell'" let-cell="cell">
606
+ * <img src="resources/{{cell.item.country}}.png" />
607
+ * {{cell.item.country}}
608
+ * </ng-template>
609
+ * </wj-multi-row-cell>
610
+ * <wj-multi-row-cell [header]="'Sales'" [binding]="'sales'"></wj-multi-row-cell>
611
+ * </wj-multi-row-cell-group>
612
+ * </wj-multi-row>
613
+ * ```
614
+ *
615
+ * The <b>cellType</b> attribute takes any of the following enumerated values:
616
+ *
617
+ * <b>Cell</b>
618
+ *
619
+ * Defines a regular (data) cell template. Must be a child of the {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} component.
620
+ * For example, this cell template shows flags in the cells of Country column:
621
+ *
622
+ * ```html
623
+ * <wj-multi-row-cell [header]="'Country'" [binding]="'country'">
624
+ * <ng-template wjMultiRowCellTemplate [cellType]="'Cell'" let-cell="cell">
625
+ * <img src="resources/{{cell.item.country}}.png" />
626
+ * {{cell.item.country}}
627
+ * </ng-template>
628
+ * </wj-multi-row-cell>
629
+ * ```
630
+ *
631
+ * <b>CellEdit</b>
632
+ *
633
+ * Defines a template for a cell in edit mode. Must be a child of the {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} component.
634
+ * This cell type has an additional <b>cell.value</b> property available for binding. It contains the
635
+ * original cell value before editing, and the updated value after editing.
636
+
637
+ * For example, here is a template that uses the Wijmo {@link InputNumber} control as an editor
638
+ * for the "Sales" column:
639
+ *
640
+ * ```html
641
+ * <wj-multi-row-cell [header]="'Sales'" [binding]="'sales'">
642
+ * <ng-template wjMultiRowCellTemplate [cellType]="'CellEdit'">
643
+ * <wj-input-number [(value)]="cell.value" [step]="1"></wj-input-number>
644
+ * </ng-template>
645
+ * </wj-multi-row-cell>
646
+ * ```
647
+ *
648
+ * <b>ColumnHeader</b>
649
+ *
650
+ * Defines a template for a column header cell. Must be a child of the {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} component.
651
+ * For example, this template adds an image to the header of the "Country" column:
652
+ *
653
+ * ```html
654
+ * <wj-multi-row-cell [header]="'Country'" [binding]="'country'">
655
+ * <ng-template wjMultiRowCellTemplate [cellType]="'ColumnHeader'" let-cell="cell">
656
+ * <img src="resources/globe.png" />
657
+ * {{cell.col.header}}
658
+ * </ng-template>
659
+ * </wj-multi-row-cell>
660
+ * ```
661
+ *
662
+ * <b>RowHeader</b>
663
+ *
664
+ * Defines a template for a row header cell. Must be a child of the {@link wijmo.angular2legacy.grid.multirow.WjMultiRow} component.
665
+ * For example, this template shows row indices in the row headers:
666
+ *
667
+ * ```html
668
+ * <wj-multi-row #mr [itemsSource]="data">
669
+ * <ng-template wjMultiRowCellTemplate [cellType]="'RowHeader'" let-cell="cell">
670
+ * {{cell.row.index / mr.rowsPerItem + 1}}
671
+ * </ng-template>
672
+ * </wj-multi-row>
673
+ * ```
674
+ *
675
+ * Note that this template is applied to a row header cell, even if it is in a row that is
676
+ * in edit mode. In order to provide an edit-mode version of a row header cell with alternate
677
+ * content, define the <b>RowHeaderEdit</b> template.
678
+ *
679
+ * <b>RowHeaderEdit</b>
680
+ *
681
+ * Defines a template for a row header cell in edit mode. Must be a child of the
682
+ * {@link wijmo.angular2legacy.grid.multirow.WjMultiRow} component. For example, this template shows dots in the header
683
+ * of rows being edited:
684
+ *
685
+ * ```html
686
+ * <wj-multi-row [itemsSource]="data">
687
+ * <ng-template wjMultiRowCellTemplate [cellType]="'RowHeaderEdit'">
688
+ * ...
689
+ * </ng-template>
690
+ * </wj-multi-row>
691
+ * ```
692
+ *
693
+ * Use the following <b>RowHeaderEdit</b> template to add the standard edit-mode indicator to cells where the <b>RowHeader</b> template
694
+ * applies:
695
+ *
696
+ * ```html
697
+ * <wj-multi-row [itemsSource]="data">
698
+ * <ng-template wjMultiRowCellTemplate [cellType]="'RowHeaderEdit'">
699
+ * {{&amp;#x270e;}}
700
+ * </ng-template>
701
+ * </wj-multi-row>
702
+ * ```
703
+ *
704
+ * <b>TopLeft</b>
705
+ *
706
+ * Defines a template for the top left cell. Must be a child of the {@link wijmo.angular2legacy.grid.multirow.WjMultiRow} component.
707
+ * For example, this template shows a down/right glyph in the top-left cell of the grid:
708
+ *
709
+ * ```html
710
+ * <wj-multi-row [itemsSource]="data">
711
+ * <ng-template wjMultiRowCellTemplate [cellType]="'TopLeft'">
712
+ * <span class="wj-glyph-down-right"></span>
713
+ * </ng-template>
714
+ * </wj-multi-row>
715
+ * ```
716
+ *
717
+ * <b>GroupHeader</b>
718
+ *
719
+ * Defines a template for a group header cell in a {@link GroupRow}. Must be a child of the {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} component.
720
+ *
721
+ * The <b>cell.row</b> property contains an instance of the <b>GroupRow</b> class. If the grouping comes
722
+ * from {@link CollectionView}, the <b>cell.item</b> property references the {@link CollectionViewGroup} object.
723
+ *
724
+ * For example, this template uses a checkbox element as an expand/collapse toggle:
725
+ *
726
+ * ```html
727
+ * <wj-multi-row-cell [header]="'Country'" [binding]="'country'">
728
+ * <ng-template wjMultiRowCellTemplate [cellType]="'GroupHeader'" let-cell="cell">
729
+ * <input type="checkbox" [(ngModel)]="cell.row.isCollapsed"/>
730
+ * {{cell.item.name}} ({{cell.item.items.length}} items)
731
+ * </ng-template>
732
+ * </wj-multi-row-cell>
733
+ * ```
734
+ *
735
+ * <b>Group</b>
736
+ *
737
+ * Defines a template for a regular cell (not a group header) in a {@link GroupRow}. Must be a child of the
738
+ * {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} component. This cell type has an additional <b>cell.value</b> property available for
739
+ * binding. In cases where columns have the <b>aggregate</b> property specified, it contains the unformatted
740
+ * aggregate value.
741
+ *
742
+ * For example, this template shows aggregate's value and kind for group row cells in the "Sales"
743
+ * column:
744
+ *
745
+ * ```html
746
+ * <wj-multi-row-cell [header]="'Sales'" [binding]="'sales'" [aggregate]="'Avg'">
747
+ * <ng-template wjMultiRowCellTemplate [cellType]="'Group'" let-cell="cell">
748
+ * Average: {{cell.value | number:'1.0-0'}}
749
+ * </ng-template>
750
+ * </wj-multi-row-cell>
751
+ * ```
752
+ *
753
+ * <b>NewCellTemplate</b>
754
+ *
755
+ * Defines a cell in a new row template. Must be a child of the {@link wijmo.angular2legacy.grid.multirow.WjMultiRowCell} component.
756
+ * Note that the <b>cell.item</b> property is undefined for this type of a cell.
757
+ * For example, this cell template shows a placeholder in the Date column's cell in the "new row" item:
758
+ *
759
+ * ```html
760
+ * <wj-multi-row-cell [header]="'Date'" [binding]="'date'">
761
+ * <ng-template wjMultiRowCellTemplate [cellType]="'NewCellTemplate'">
762
+ * Enter a date here
763
+ * </ng-template>
764
+ * </wj-multi-row-cell>
765
+ * ```
766
+ */
767
+ export declare class WjMultiRowCellTemplate extends wjGrid.WjFlexGridCellTemplate {
768
+ constructor(viewContainerRef: ViewContainerRef, templateRef: TemplateRef<any>, elRef: ElementRef, parentCmp: any, injector: Injector, cdRef: ChangeDetectorRef);
769
+ }
770
+ export declare class WjGridMultirowModule {
771
+ }