1 | export class Events {
|
2 |
|
3 |
|
4 | public static EVENT_COLUMN_EVERYTHING_CHANGED = 'columnEverythingChanged';
|
5 |
|
6 |
|
7 | public static EVENT_NEW_COLUMNS_LOADED = 'newColumnsLoaded';
|
8 |
|
9 |
|
10 | public static EVENT_COLUMN_PIVOT_MODE_CHANGED = 'columnPivotModeChanged';
|
11 |
|
12 |
|
13 | public static EVENT_COLUMN_ROW_GROUP_CHANGED = 'columnRowGroupChanged';
|
14 |
|
15 |
|
16 | public static EVENT_COLUMN_PIVOT_CHANGED = 'columnPivotChanged';
|
17 |
|
18 |
|
19 | public static EVENT_GRID_COLUMNS_CHANGED = 'gridColumnsChanged';
|
20 |
|
21 |
|
22 | public static EVENT_COLUMN_VALUE_CHANGED = 'columnValueChanged';
|
23 |
|
24 |
|
25 | public static EVENT_COLUMN_MOVED = 'columnMoved';
|
26 |
|
27 |
|
28 | public static EVENT_COLUMN_VISIBLE = 'columnVisible';
|
29 |
|
30 |
|
31 | public static EVENT_COLUMN_PINNED = 'columnPinned';
|
32 |
|
33 |
|
34 | public static EVENT_COLUMN_GROUP_OPENED = 'columnGroupOpened';
|
35 |
|
36 |
|
37 | public static EVENT_COLUMN_RESIZED = 'columnResized';
|
38 |
|
39 |
|
40 | public static EVENT_DISPLAYED_COLUMNS_CHANGED = 'displayedColumnsChanged';
|
41 |
|
42 |
|
43 | public static EVENT_VIRTUAL_COLUMNS_CHANGED = 'virtualColumnsChanged';
|
44 |
|
45 |
|
46 | public static EVENT_ROW_GROUP_OPENED = 'rowGroupOpened';
|
47 |
|
48 |
|
49 | public static EVENT_ROW_DATA_CHANGED = 'rowDataChanged';
|
50 |
|
51 |
|
52 | public static EVENT_ROW_DATA_UPDATED = 'rowDataUpdated';
|
53 |
|
54 |
|
55 | public static EVENT_PINNED_ROW_DATA_CHANGED = 'pinnedRowDataChanged';
|
56 |
|
57 |
|
58 | public static EVENT_RANGE_SELECTION_CHANGED = 'rangeSelectionChanged';
|
59 |
|
60 |
|
61 | public static EVENT_TOOL_PANEL_VISIBLE_CHANGED = 'toolPanelVisibleChanged';
|
62 |
|
63 |
|
64 | public static EVENT_MODEL_UPDATED = 'modelUpdated';
|
65 |
|
66 | public static EVENT_PASTE_START = 'pasteStart';
|
67 | public static EVENT_PASTE_END = 'pasteEnd';
|
68 |
|
69 | public static EVENT_CELL_CLICKED = 'cellClicked';
|
70 | public static EVENT_CELL_DOUBLE_CLICKED = 'cellDoubleClicked';
|
71 | public static EVENT_CELL_MOUSE_DOWN = 'cellMouseDown';
|
72 | public static EVENT_CELL_CONTEXT_MENU = 'cellContextMenu';
|
73 | public static EVENT_CELL_VALUE_CHANGED = 'cellValueChanged';
|
74 | public static EVENT_ROW_VALUE_CHANGED = 'rowValueChanged';
|
75 | public static EVENT_CELL_FOCUSED = 'cellFocused';
|
76 | public static EVENT_ROW_SELECTED = 'rowSelected';
|
77 | public static EVENT_SELECTION_CHANGED = 'selectionChanged';
|
78 |
|
79 | public static EVENT_CELL_MOUSE_OVER = 'cellMouseOver';
|
80 | public static EVENT_CELL_MOUSE_OUT = 'cellMouseOut';
|
81 |
|
82 |
|
83 | public static EVENT_FILTER_CHANGED = 'filterChanged';
|
84 |
|
85 |
|
86 | public static EVENT_FILTER_MODIFIED = 'filterModified';
|
87 |
|
88 | public static EVENT_SORT_CHANGED = 'sortChanged';
|
89 |
|
90 |
|
91 | public static EVENT_VIRTUAL_ROW_REMOVED = 'virtualRowRemoved';
|
92 |
|
93 | public static EVENT_ROW_CLICKED = 'rowClicked';
|
94 | public static EVENT_ROW_DOUBLE_CLICKED = 'rowDoubleClicked';
|
95 |
|
96 |
|
97 | public static EVENT_GRID_READY = 'gridReady';
|
98 | |
99 |
|
100 | public static EVENT_GRID_SIZE_CHANGED = 'gridSizeChanged';
|
101 |
|
102 | public static EVENT_VIEWPORT_CHANGED = 'viewportChanged';
|
103 |
|
104 | public static EVENT_DRAG_STARTED = 'dragStarted';
|
105 |
|
106 | public static EVENT_DRAG_STOPPED = 'dragStopped';
|
107 |
|
108 | public static EVENT_ROW_EDITING_STARTED = 'rowEditingStarted';
|
109 | public static EVENT_ROW_EDITING_STOPPED = 'rowEditingStopped';
|
110 |
|
111 | public static EVENT_CELL_EDITING_STARTED = 'cellEditingStarted';
|
112 | public static EVENT_CELL_EDITING_STOPPED = 'cellEditingStopped';
|
113 |
|
114 |
|
115 | public static EVENT_BODY_SCROLL = 'bodyScroll';
|
116 |
|
117 | public static EVENT_ANIMATION_QUEUE_EMPTY = 'animationQueueEmpty';
|
118 |
|
119 | public static EVENT_HEIGHT_SCALE_CHANGED = 'heightScaleChanged';
|
120 |
|
121 | |
122 |
|
123 | public static EVENT_PAGINATION_CHANGED = 'paginationChanged';
|
124 |
|
125 | |
126 |
|
127 |
|
128 | public static EVENT_COMPONENT_STATE_CHANGED = 'componentStateChanged';
|
129 |
|
130 |
|
131 |
|
132 | public static EVENT_BODY_HEIGHT_CHANGED = 'bodyHeightChanged';
|
133 | public static EVENT_DISPLAYED_COLUMNS_WIDTH_CHANGED = 'displayedColumnsWidthChanged';
|
134 | public static EVENT_SCROLL_VISIBILITY_CHANGED = 'scrollVisibilityChanged';
|
135 | public static EVENT_COLUMN_HOVER_CHANGED = 'columnHoverChanged';
|
136 | public static EVENT_FLASH_CELLS = 'flashCells';
|
137 |
|
138 | public static EVENT_ROW_DRAG_ENTER = 'rowDragEnter';
|
139 | public static EVENT_ROW_DRAG_MOVE = 'rowDragMove';
|
140 | public static EVENT_ROW_DRAG_LEAVE = 'rowDragLeave';
|
141 | public static EVENT_ROW_DRAG_END = 'rowDragEnd';
|
142 |
|
143 |
|
144 |
|
145 |
|
146 | public static EVENT_COLUMN_ROW_GROUP_CHANGE_REQUEST = 'columnRowGroupChangeRequest';
|
147 | public static EVENT_COLUMN_PIVOT_CHANGE_REQUEST = 'columnPivotChangeRequest';
|
148 | public static EVENT_COLUMN_VALUE_CHANGE_REQUEST = 'columnValueChangeRequest';
|
149 | public static EVENT_COLUMN_AGG_FUNC_CHANGE_REQUEST = 'columnAggFuncChangeRequest';
|
150 | }
|