-
Notifications
You must be signed in to change notification settings - Fork 155
/
Copy pathconstant.ts
550 lines (549 loc) · 20 KB
/
constant.ts
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
/** @hidden */
export const created: string = 'create';
/** @hidden */
export const destroyed: string = 'destroy';
/** @hidden */
export const load: string = 'load';
/** @hidden */
export const rowDataBound: string = 'rowDataBound';
/** @hidden */
export const queryCellInfo: string = 'queryCellInfo';
/** @hidden */
export const headerCellInfo: string = 'headerCellInfo';
/** @hidden */
export const actionBegin: string = 'actionBegin';
/** @hidden */
export const actionComplete: string = 'actionComplete';
/** @hidden */
export const actionFailure: string = 'actionFailure';
/** @hidden */
export const dataBound: string = 'dataBound';
/** @hidden */
export const rowSelecting: string = 'rowSelecting';
/** @hidden */
export const rowSelected: string = 'rowSelected';
/** @hidden */
export const rowDeselecting: string = 'rowDeselecting';
/** @hidden */
export const rowDeselected: string = 'rowDeselected';
/** @hidden */
export const cellSelecting: string = 'cellSelecting';
/** @hidden */
export const cellSelected: string = 'cellSelected';
/** @hidden */
export const cellDeselecting: string = 'cellDeselecting';
/** @hidden */
export const cellDeselected: string = 'cellDeselected';
/** @hidden */
export const columnSelecting: string = 'columnSelecting';
/** @hidden */
export const columnSelected: string = 'columnSelected';
/** @hidden */
export const columnDeselecting: string = 'columnDeselecting';
/** @hidden */
export const columnDeselected: string = 'columnDeselected';
/** @hidden */
export const columnDragStart: string = 'columnDragStart';
/** @hidden */
export const columnDrag: string = 'columnDrag';
/** @hidden */
export const columnDrop: string = 'columnDrop';
/** @hidden */
export const rowDragStartHelper: string = 'rowDragStartHelper';
/** @hidden */
export const rowDragStart: string = 'rowDragStart';
/** @hidden */
export const rowDrag: string = 'rowDrag';
/** @hidden */
export const rowDrop: string = 'rowDrop';
/** @hidden */
export const beforePrint: string = 'beforePrint';
/** @hidden */
export const printComplete: string = 'printComplete';
/** @hidden */
export const detailDataBound: string = 'detailDataBound';
/** @hidden */
export const toolbarClick: string = 'toolbarClick';
/** @hidden */
export const batchAdd: string = 'batchAdd';
/** @hidden */
export const batchCancel: string = 'batchCancel';
/** @hidden */
export const batchDelete: string = 'batchDelete';
/** @hidden */
export const beforeBatchAdd: string = 'beforeBatchAdd';
/** @hidden */
export const beforeBatchDelete: string = 'beforeBatchDelete';
/** @hidden */
export const beforeBatchSave: string = 'beforeBatchSave';
/** @hidden */
export const beginEdit: string = 'beginEdit';
/** @hidden */
export const cellEdit: string = 'cellEdit';
/** @hidden */
export const cellSave: string = 'cellSave';
/** @hidden */
export const cellSaved: string = 'cellSaved';
/** @hidden */
export const endAdd: string = 'endAdd';
/** @hidden */
export const endDelete: string = 'endDelete';
/** @hidden */
export const endEdit: string = 'endEdit';
/** @hidden */
export const recordDoubleClick: string = 'recordDoubleClick';
/** @hidden */
export const recordClick: string = 'recordClick';
/** @hidden */
export const beforeDataBound: string = 'beforeDataBound';
/** @hidden */
export const beforeOpenColumnChooser: string = 'beforeOpenColumnChooser';
/** @hidden */
export const beforeOpenAdaptiveDialog: string = 'beforeOpenAdaptiveDialog';
/** @hidden */
export const resizeStart: string = 'resizeStart';
/** @hidden */
export const onResize: string = 'resizing';
/** @hidden */
export const resizeStop: string = 'resizeStop';
/** @hidden */
export const checkBoxChange: string = 'checkBoxChange';
/** @hidden */
export const beforeCopy: string = 'beforeCopy';
/** @hidden */
export const beforePaste: string = 'beforePaste';
/** @hidden */
export const beforeAutoFill: string = 'beforeAutoFill';
/** @hidden */
export const filterChoiceRequest: string = 'filterchoicerequest';
/** @hidden */
export const filterAfterOpen: string = 'filterafteropen';
/** @hidden */
export const filterBeforeOpen: string = 'filterbeforeopen';
/** @hidden */
export const filterSearchBegin: string = 'filtersearchbegin';
/** @hidden */
export const commandClick: string = 'commandClick';
/** @hidden */
export const exportGroupCaption: string = 'exportGroupCaption';
/** @hidden */
export const lazyLoadGroupExpand: string = 'lazyLoadGroupExpand';
/** @hidden */
export const lazyLoadGroupCollapse: string = 'lazyLoadGroupCollapse';
/**
* Specifies grid internal events
*/
/** @hidden */
export const initialLoad: string = 'initial-load';
/** @hidden */
export const initialEnd: string = 'initial-end';
/** @hidden */
export const dataReady: string = 'data-ready';
/** @hidden */
export const contentReady: string = 'content-ready';
/** @hidden */
export const uiUpdate: string = 'ui-update';
/** @hidden */
export const onEmpty: string = 'on-empty';
/** @hidden */
export const inBoundModelChanged: string = 'inbound-model-changed';
/** @hidden */
export const modelChanged: string = 'model-changed';
/** @hidden */
export const colGroupRefresh: string = 'colgroup-refresh';
/** @hidden */
export const headerRefreshed: string = 'header-refreshed';
/** @hidden */
export const pageBegin: string = 'paging-begin';
/** @hidden */
export const pageComplete: string = 'paging-complete';
/** @hidden */
export const sortBegin: string = 'sorting-begin';
/** @hidden */
export const sortComplete: string = 'sorting-complete';
/** @hidden */
export const filterBegin: string = 'filtering-begin';
/** @hidden */
export const filterComplete: string = 'filtering-complete';
/** @hidden */
export const searchBegin: string = 'searching-begin';
/** @hidden */
export const searchComplete: string = 'searching-complete';
/** @hidden */
export const reorderBegin: string = 'reorder-begin';
/** @hidden */
export const reorderComplete: string = 'reorder-complete';
/** @hidden */
export const rowDragAndDropBegin: string = 'rowdraganddrop-begin';
/** @hidden */
export const rowDragAndDropComplete: string = 'rowdraganddrop-complete';
/** @hidden */
export const groupBegin: string = 'grouping-begin';
/** @hidden */
export const groupComplete: string = 'grouping-complete';
/** @hidden */
export const ungroupBegin: string = 'ungrouping-begin';
/** @hidden */
export const ungroupComplete: string = 'ungrouping-complete';
/** @hidden */
export const groupAggregates: string = 'group-aggregates';
/** @hidden */
export const refreshFooterRenderer: string = 'refresh-footer-rendered';
/** @hidden */
export const refreshAggregateCell: string = 'refresh-aggregate-cell';
/** @hidden */
export const refreshAggregates: string = 'refresh-aggregates';
/** @hidden */
export const rowSelectionBegin: string = 'rowselecting';
/** @hidden */
export const rowSelectionComplete: string = 'rowselected';
/** @hidden */
export const columnSelectionBegin: string = 'columnselecting';
/** @hidden */
export const columnSelectionComplete: string = 'columnselected';
/** @hidden */
export const cellSelectionBegin: string = 'cellselecting';
/** @hidden */
export const cellSelectionComplete: string = 'cellselected';
/** @hidden */
export const beforeCellFocused: string = 'beforecellfocused';
/** @hidden */
export const cellFocused: string = 'cellfocused';
/** @hidden */
export const keyPressed: string = 'key-pressed';
/** @hidden */
export const click: string = 'click';
/** @hidden */
export const destroy: string = 'destroy';
/** @hidden */
export const columnVisibilityChanged: string = 'column-visible-changed';
/** @hidden */
export const scroll: string = 'scroll';
/** @hidden */
export const columnWidthChanged: string = 'column-width-changed';
/** @hidden */
export const columnPositionChanged: string = 'column-position-changed';
/** @hidden */
export const rowDragAndDrop: string = 'row-drag-and-drop';
/** @hidden */
export const rowsAdded: string = 'rows-added';
/** @hidden */
export const rowsRemoved: string = 'rows-removed';
/** @hidden */
export const columnDragStop: string = 'column-drag-stop';
/** @hidden */
export const headerDrop: string = 'header-drop';
/** @hidden */
export const dataSourceModified: string = 'datasource-modified';
/** @hidden */
export const refreshComplete: string = 'refresh-complete';
/** @hidden */
export const refreshVirtualBlock: string = 'refresh-virtual-block';
/** @hidden */
export const dblclick: string = 'dblclick';
/** @hidden */
export const toolbarRefresh: string = 'toolbar-refresh';
/** @hidden */
export const bulkSave: string = 'bulk-save';
/** @hidden */
export const autoCol: string = 'auto-col';
/** @hidden */
export const tooltipDestroy: string = 'tooltip-destroy';
/** @hidden */
export const updateData: string = 'update-data';
/** @hidden */
export const editBegin: string = 'edit-begin';
/** @hidden */
export const editComplete: string = 'edit-complete';
/** @hidden */
export const addBegin: string = 'add-begin';
/** @hidden */
export const addComplete: string = 'add-complete';
/** @hidden */
export const saveComplete: string = 'save-complete';
/** @hidden */
export const deleteBegin: string = 'delete-begin';
/** @hidden */
export const deleteComplete: string = 'delete-complete';
/** @hidden */
export const preventBatch: string = 'prevent-batch';
/** @hidden */
export const dialogDestroy: string = 'dialog-destroy';
/** @hidden */
export const crudAction: string = 'crud-Action';
/** @hidden */
export const addDeleteAction: string = 'add-delete-Action';
/** @hidden */
export const destroyForm: string = 'destroy-form';
/** @hidden */
export const doubleTap: string = 'double-tap';
/** @hidden */
export const beforeExcelExport: string = 'beforeExcelExport';
/** @hidden */
export const excelExportComplete: string = 'excelExportComplete';
/** @hidden */
export const excelQueryCellInfo: string = 'excelQueryCellInfo';
/** @hidden */
export const excelHeaderQueryCellInfo: string = 'excelHeaderQueryCellInfo';
/** @hidden */
export const exportDetailDataBound: string = 'exportDetailDataBound';
/** @hidden */
export const beforePdfExport: string = 'beforePdfExport';
/** @hidden */
export const pdfExportComplete: string = 'pdfExportComplete';
/** @hidden */
export const pdfQueryCellInfo: string = 'pdfQueryCellInfo';
/** @hidden */
export const pdfHeaderQueryCellInfo: string = 'pdfHeaderQueryCellInfo';
/** @hidden */
export const accessPredicate: string = 'access-predicate';
/** @hidden */
export const contextMenuClick: string = 'contextMenuClick';
/** @hidden */
export const freezeRender: string = 'freezerender';
/** @hidden */
export const freezeRefresh: string = 'freezerefresh';
/** @hidden */
export const contextMenuOpen: string = 'contextMenuOpen';
/** @hidden */
export const columnMenuClick: string = 'columnMenuClick';
/** @hidden */
export const columnMenuOpen: string = 'columnMenuOpen';
/** @hidden */
export const filterOpen: string = 'filterOpen';
/** @hidden */
export const filterDialogCreated: string = 'filterDialogCreated';
/** @hidden */
export const filterMenuClose: string = 'filter-menu-close';
/** @hidden */
export const initForeignKeyColumn: string = 'initForeignKeyColumn';
/** @hidden */
export const getForeignKeyData: string = 'getForeignKeyData';
/** @hidden */
export const generateQuery: string = 'generateQuery';
/** @hidden */
export const showEmptyGrid: string = 'showEmptyGrid';
/** @hidden */
export const foreignKeyData: string = 'foreignKeyData';
/** @hidden */
export const columnDataStateChange: string = 'columnDataStateChange';
/** @hidden */
export const dataStateChange: string = 'dataStateChange';
/** @hidden */
export const dataSourceChanged: string = 'dataSourceChanged';
/** @hidden */
export const rtlUpdated: string = 'rtl-updated';
/** @hidden */
export const beforeFragAppend: string = 'beforeFragAppend';
/** @hidden */
export const frozenHeight: string = 'frozenHeight';
/** @hidden */
export const textWrapRefresh: string = 'textWrapRefresh';
/** @hidden */
export const recordAdded: string = 'recordAdded';
/** @hidden */
export const cancelBegin: string = 'cancel-Begin';
/** @hidden */
export const editNextValCell: string = 'editNextValCell';
/** @hidden */
export const hierarchyPrint: string = 'hierarchyprint';
/** @hidden */
export const expandChildGrid: string = 'expandchildgrid';
/** @hidden */
export const printGridInit: string = 'printGrid-Init';
/** @hidden */
export const exportRowDataBound: string = 'export-RowDataBound';
/** @hidden */
export const exportDataBound: string = 'export-DataBound';
/** @hidden */
export const rowPositionChanged: string = 'row-position-changed';
/** @hidden */
export const columnChooserOpened: string = 'columnChooserOpened';
/** @hidden */
export const batchForm: string = 'batchedit-form';
/** @hidden */
export const beforeStartEdit: string = 'edit-form';
/** @hidden */
export const beforeBatchCancel: string = 'before-batch-cancel';
/** @hidden */
export const batchEditFormRendered: string = 'batcheditform-rendered';
/** @hidden */
export const partialRefresh: string = 'partial-refresh';
/** @hidden */
export const beforeCustomFilterOpen: string = 'beforeCustomFilterOpen';
/** @hidden */
export const selectVirtualRow: string = 'select-virtual-Row';
/** @hidden */
export const columnsPrepared: string = 'columns-prepared';
/** @hidden */
export const cBoxFltrBegin: string = 'cbox-filter-begin';
/** @hidden */
export const cBoxFltrComplete: string = 'cbox-filter-complete';
/** @hidden */
export const fltrPrevent: string = 'filter-Prevent';
/** @hidden */
export const beforeFltrcMenuOpen: string = 'before-filter-cmenu-open';
/** @hidden */
export const valCustomPlacement: string = 'validation-custom-placement';
/** @hidden */
export const filterCboxValue: string = 'filter-cbox-value';
/** @hidden */
export const componentRendered: string = 'component-rendered';
/** @hidden */
export const restoreFocus: string = 'restore-Focus';
/** @hidden */
export const detailStateChange: string = 'detail-state-change';
/** @hidden */
export const detailIndentCellInfo: string = 'detail-indentcell-info';
/** @hidden */
export const virtaulKeyHandler: string = 'virtaul-key-handler';
/** @hidden */
export const virtaulCellFocus: string = 'virtaul-cell-focus';
/** @hidden */
export const virtualScrollEditActionBegin: string = 'virtual-scroll-edit-action-begin';
/** @hidden */
export const virtualScrollEditSuccess: string = 'virtual-scroll-edit-success';
/** @hidden */
export const virtualScrollEditCancel: string = 'virtual-scroll-edit-cancel';
/** @hidden */
export const virtualScrollEdit: string = 'virtual-scroll-edit';
/** @hidden */
export const refreshVirtualCache: string = 'refresh-virtual-cache';
/** @hidden */
export const editReset: string = 'edit-reset';
/** @hidden */
export const virtualScrollAddActionBegin: string = 'virtual-scroll-add-action-begin';
/** @hidden */
export const getVirtualData: string = 'get-virtual-data';
/** @hidden */
export const refreshInfiniteModeBlocks: string = 'refresh-infinite-mode-blocks';
/** @hidden */
export const resetInfiniteBlocks: string = 'reset-infinite-blocks';
/** @hidden */
export const infiniteScrollHandler: string = 'infinite-scroll-handler';
/** @hidden */
export const infinitePageQuery: string = 'infinite-page-query';
/** @hidden */
export const infiniteShowHide: string = 'infinite-show-hide';
/** @hidden */
export const appendInfiniteContent: string = 'append-infinite-content';
/** @hidden */
export const removeInfiniteRows: string = 'remove-infinite-rows';
/** @hidden */
export const setInfiniteCache: string = 'set-infinite-cache';
/** @hidden */
export const infiniteEditHandler: string = 'infinite-edit-handler';
/** @hidden */
export const initialCollapse: string = 'initial-collapse';
/** @hidden */
export const getAggregateQuery: string = 'get-aggregate-query';
/** @hidden */
export const closeFilterDialog: string = 'close-filter-dialog';
/** @hidden */
export const columnChooserCancelBtnClick: string = 'columnChooserCancelBtnClick';
/** @hidden */
export const getFilterBarOperator: string = 'get-filterbar-operator';
/** @hidden */
export const resetColumns: string = 'reset-columns';
/** @hidden */
export const pdfAggregateQueryCellInfo: string = 'pdfAggregateQueryCellInfo';
/** @hidden */
export const excelAggregateQueryCellInfo: string = 'excelAggregateQueryCellInfo';
/** @hidden */
export const setGroupCache: string = 'group-cache';
/** @hidden */
export const lazyLoadScrollHandler: string = 'lazy-load-scroll-handler';
/** @hidden */
export const groupCollapse: string = 'group-collapse';
/** @hidden */
export const beforeCheckboxRenderer: string = 'beforeCheckboxRenderer';
/** @hidden */
export const refreshHandlers: string = 'refreshResizeHandlers';
/** @hidden */
export const refreshFrozenColumns: string = 'refresh-frozen-columns';
/** @hidden */
export const setReorderDestinationElement: string = 'set-reorder-destination-element';
/** @hidden */
export const refreshVirtualFrozenHeight: string = 'refresh-virtual-frozen-height';
/** @hidden */
export const setFreezeSelection: string = 'set-freeze-selection';
/** @hidden */
export const setInfiniteFrozenHeight: string = 'set-infinite-frozen-height';
/** @hidden */
export const setInfiniteColFrozenHeight: string = 'set-infinite-col-frozen-height';
/** @hidden */
export const beforeRefreshOnDataChange: string = 'before-refresh-on-data-change';
/** @hidden */
export const immutableBatchCancel: string = 'immutable-batch-cancel';
/** @hidden */
export const refreshVirtualFrozenRows: string = 'refresh-virtual-frozenrows';
/** @hidden */
export const checkScrollReset: string = 'check-scroll-reset';
/** @hidden */
export const refreshFrozenHeight: string = 'refresh-frozen-height';
/** @hidden */
export const setHeightToFrozenElement: string = 'set-height-to-frozen-element';
/** @hidden */
export const preventFrozenScrollRefresh: string = 'prevent-frozen-scroll-refresh';
/** @hidden */
export const nextCellIndex: string = 'next-cell-index';
/** @hidden */
export const refreshInfiniteCurrentViewData: string = 'refresh-infinite-current-view-data';
/** @hidden */
export const infiniteCrudCancel: string = 'infinite-crud-cancel';
/** @hidden */
export const filterDialogClose: string = 'filter-dialog-close';
/** @hidden */
export const refreshCustomFilterOkBtn: string = 'refresh-cutsom-filter-ok-button';
/** @hidden */
export const refreshCustomFilterClearBtn: string = 'refresh-cutsom-filter-clear-button';
/** @hidden */
export const renderResponsiveCmenu: string = 'render-responsive-cmenu';
/** @hidden */
export const filterCmenuSelect: string = 'filter-cmenu-select';
/** @hidden */
export const customFilterClose: string = 'custom-filter-close';
/** @hidden */
export const setFullScreenDialog: string = 'set-fullscreen-dialog';
/** @hidden */
export const refreshExpandandCollapse: string = 'refresh-Expand-and-Collapse';
/** @hidden */
export const rowModeChange: string = 'row-mode-change';
/** @hidden */
export const enterKeyHandler: string = 'enter-key-handler';
/** @hidden */
export const refreshVirtualMaxPage: string = 'refresh-virtual-max-page';
/** @hidden */
export const setVirtualPageQuery: string = 'set-virtual-page-query';
/** @hidden */
export const selectRowOnContextOpen: string = 'select-row-on-context-open';
/** @hidden */
export const pagerRefresh: string = 'pager-refresh';
/** @hidden */
export const closeInline: string = 'closeinline';
/** @hidden */
export const closeBatch: string = 'closebatch';
/** @hidden */
export const closeEdit: string = 'close-edit';
/** @hidden */
export const resetVirtualFocus: string = 'reset-virtual-focus';
/** @hidden */
export const afterContentRender: string = 'after-content-renderer';
/** @hidden */
export const refreshVirtualEditFormCells: string = 'refresh-virtual-editform-cells';
/** @hidden */
export const scrollToEdit: string = 'scroll-to-edit';
/** @hidden */
export const beforeCheckboxRendererQuery: string = 'before-checkbox-renderer-query';
/** @hidden */
export const createVirtualValidationForm: string = 'create-virtual-validation-form';
/** @hidden */
export const validateVirtualForm: string = 'validate-virtual-form';
/** @hidden */
export const destroyChildGrid: string = 'destroy-child-grid';
/** @hidden */
export const stickyScrollComplete: string = 'sticky-scroll-complete';
/** @hidden */
export const captionActionComplete: string = 'infinite-group-collapse';
/** @hidden */
export const refreshInfinitePersistSelection: string = 'refresh-infinite-persist-selection';