@bryntum/gantt-react 7.1.2 → 7.1.3
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/README.md +12 -6
- package/lib/BryntumAssignmentGrid.d.ts +18 -8
- package/lib/BryntumAssignmentGrid.js +2 -0
- package/lib/BryntumAssignmentGrid.js.map +1 -1
- package/lib/BryntumAssignmentPicker.d.ts +253 -0
- package/lib/BryntumAssignmentPicker.js +182 -0
- package/lib/BryntumAssignmentPicker.js.map +1 -0
- package/lib/BryntumGantt.d.ts +18 -8
- package/lib/BryntumGantt.js +2 -0
- package/lib/BryntumGantt.js.map +1 -1
- package/lib/BryntumGanttBase.d.ts +18 -8
- package/lib/BryntumGanttBase.js +2 -0
- package/lib/BryntumGanttBase.js.map +1 -1
- package/lib/BryntumGrid.d.ts +18 -8
- package/lib/BryntumGrid.js +2 -0
- package/lib/BryntumGrid.js.map +1 -1
- package/lib/BryntumGridBase.d.ts +18 -8
- package/lib/BryntumGridBase.js +2 -0
- package/lib/BryntumGridBase.js.map +1 -1
- package/lib/BryntumResourceGrid.d.ts +18 -8
- package/lib/BryntumResourceGrid.js +2 -0
- package/lib/BryntumResourceGrid.js.map +1 -1
- package/lib/BryntumResourceHistogram.d.ts +18 -8
- package/lib/BryntumResourceHistogram.js +2 -0
- package/lib/BryntumResourceHistogram.js.map +1 -1
- package/lib/BryntumResourceUtilization.d.ts +18 -8
- package/lib/BryntumResourceUtilization.js +2 -0
- package/lib/BryntumResourceUtilization.js.map +1 -1
- package/lib/BryntumScheduler.d.ts +18 -8
- package/lib/BryntumScheduler.js +2 -0
- package/lib/BryntumScheduler.js.map +1 -1
- package/lib/BryntumSchedulerBase.d.ts +18 -8
- package/lib/BryntumSchedulerBase.js +2 -0
- package/lib/BryntumSchedulerBase.js.map +1 -1
- package/lib/BryntumSchedulerPro.d.ts +18 -8
- package/lib/BryntumSchedulerPro.js +2 -0
- package/lib/BryntumSchedulerPro.js.map +1 -1
- package/lib/BryntumSchedulerProBase.d.ts +18 -8
- package/lib/BryntumSchedulerProBase.js +2 -0
- package/lib/BryntumSchedulerProBase.js.map +1 -1
- package/lib/BryntumTimeline.d.ts +18 -8
- package/lib/BryntumTimeline.js +2 -0
- package/lib/BryntumTimeline.js.map +1 -1
- package/lib/BryntumTimelineHistogram.d.ts +18 -8
- package/lib/BryntumTimelineHistogram.js +2 -0
- package/lib/BryntumTimelineHistogram.js.map +1 -1
- package/lib/BryntumTreeGrid.d.ts +18 -8
- package/lib/BryntumTreeGrid.js +2 -0
- package/lib/BryntumTreeGrid.js.map +1 -1
- package/lib/BryntumVersionGrid.d.ts +18 -8
- package/lib/BryntumVersionGrid.js +2 -0
- package/lib/BryntumVersionGrid.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/BryntumAssignmentGrid.tsx +40 -22
- package/src/BryntumAssignmentPicker.tsx +1109 -0
- package/src/BryntumGantt.tsx +42 -23
- package/src/BryntumGanttBase.tsx +42 -23
- package/src/BryntumGrid.tsx +40 -22
- package/src/BryntumGridBase.tsx +40 -22
- package/src/BryntumResourceGrid.tsx +40 -22
- package/src/BryntumResourceHistogram.tsx +40 -22
- package/src/BryntumResourceUtilization.tsx +40 -22
- package/src/BryntumScheduler.tsx +40 -22
- package/src/BryntumSchedulerBase.tsx +40 -22
- package/src/BryntumSchedulerPro.tsx +40 -22
- package/src/BryntumSchedulerProBase.tsx +40 -22
- package/src/BryntumTimeline.tsx +40 -22
- package/src/BryntumTimelineHistogram.tsx +40 -22
- package/src/BryntumTreeGrid.tsx +40 -22
- package/src/BryntumVersionGrid.tsx +40 -22
- package/src/index.ts +1 -0
|
@@ -801,6 +801,14 @@ export type BryntumResourceGridProps = {
|
|
|
801
801
|
* @param {any} event.value The value being set
|
|
802
802
|
*/
|
|
803
803
|
onBeforeCellRangeEdit? : ((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string
|
|
804
|
+
/**
|
|
805
|
+
* This event is triggered before a parent column is collapsed or expanded.
|
|
806
|
+
* @param {object} event Event object
|
|
807
|
+
* @param {Grid.view.GridBase} event.source The grid instance
|
|
808
|
+
* @param {Grid.column.Column} event.column The column
|
|
809
|
+
* @param {boolean} event.collapsed `true` if the column is being collapsed, `false` if expanded
|
|
810
|
+
*/
|
|
811
|
+
onBeforeColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
804
812
|
/**
|
|
805
813
|
* This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.
|
|
806
814
|
* @param {object} event Event object
|
|
@@ -911,18 +919,18 @@ export type BryntumResourceGridProps = {
|
|
|
911
919
|
/**
|
|
912
920
|
* Fires before a row is rendered.
|
|
913
921
|
* @param {object} event Event object
|
|
914
|
-
* @param {Grid.view.
|
|
915
|
-
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
916
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
917
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
922
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
923
|
+
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
924
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
925
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
918
926
|
*/
|
|
919
|
-
onBeforeRenderRow? : ((event: { source:
|
|
927
|
+
onBeforeRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
920
928
|
/**
|
|
921
929
|
* Grid rows are about to be rendered
|
|
922
930
|
* @param {object} event Event object
|
|
923
|
-
* @param {Grid.view.
|
|
931
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
924
932
|
*/
|
|
925
|
-
onBeforeRenderRows? : ((event: { source:
|
|
933
|
+
onBeforeRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
926
934
|
/**
|
|
927
935
|
* This event fires before row collapse is started.
|
|
928
936
|
* ...
|
|
@@ -1153,6 +1161,14 @@ export type BryntumResourceGridProps = {
|
|
|
1153
1161
|
* @param {Core.data.Model} event.record The record which has been collapsed.
|
|
1154
1162
|
*/
|
|
1155
1163
|
onCollapseNode? : ((event: { source: Grid, record: Model }) => void)|string
|
|
1164
|
+
/**
|
|
1165
|
+
* This event is triggered after a parent column has been collapsed or expanded.
|
|
1166
|
+
* @param {object} event Event object
|
|
1167
|
+
* @param {Grid.view.GridBase} event.source The Grid instance
|
|
1168
|
+
* @param {Grid.column.Column} event.column The column being toggled
|
|
1169
|
+
* @param {boolean} event.collapsed `true` if the column is now collapsed, `false` if expanded
|
|
1170
|
+
*/
|
|
1171
|
+
onColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
1156
1172
|
/**
|
|
1157
1173
|
* This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object
|
|
1158
1174
|
* to indicate whether the drop position is valid or not.
|
|
@@ -1234,14 +1250,14 @@ export type BryntumResourceGridProps = {
|
|
|
1234
1250
|
* ...
|
|
1235
1251
|
* [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/view/ResourceGrid#event-dataChange)
|
|
1236
1252
|
* @param {object} event Event object
|
|
1237
|
-
* @param {Grid.view.
|
|
1253
|
+
* @param {Grid.view.GridBase} event.source Owning grid
|
|
1238
1254
|
* @param {Core.data.Store} event.store The originating store
|
|
1239
1255
|
* @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`
|
|
1240
1256
|
* @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)
|
|
1241
1257
|
* @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`
|
|
1242
1258
|
* @param {object} event.changes Passed for the `'update'` action, info on which record fields changed
|
|
1243
1259
|
*/
|
|
1244
|
-
onDataChange? : ((event: { source:
|
|
1260
|
+
onDataChange? : ((event: { source: GridBase, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string
|
|
1245
1261
|
/**
|
|
1246
1262
|
* Fires when an object is destroyed.
|
|
1247
1263
|
* @param {object} event Event object
|
|
@@ -1549,18 +1565,18 @@ export type BryntumResourceGridProps = {
|
|
|
1549
1565
|
/**
|
|
1550
1566
|
* Fires after a row is rendered.
|
|
1551
1567
|
* @param {object} event Event object
|
|
1552
|
-
* @param {Grid.view.
|
|
1553
|
-
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
1554
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
1555
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
1568
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
1569
|
+
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
1570
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
1571
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
1556
1572
|
*/
|
|
1557
|
-
onRenderRow? : ((event: { source:
|
|
1573
|
+
onRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
1558
1574
|
/**
|
|
1559
1575
|
* Grid rows have been rendered
|
|
1560
1576
|
* @param {object} event Event object
|
|
1561
|
-
* @param {Grid.view.
|
|
1577
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
1562
1578
|
*/
|
|
1563
|
-
onRenderRows? : ((event: { source:
|
|
1579
|
+
onRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
1564
1580
|
/**
|
|
1565
1581
|
* Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
|
|
1566
1582
|
* @param {object} event Event object
|
|
@@ -1620,10 +1636,10 @@ export type BryntumResourceGridProps = {
|
|
|
1620
1636
|
/**
|
|
1621
1637
|
* Grid has scrolled vertically
|
|
1622
1638
|
* @param {object} event Event object
|
|
1623
|
-
* @param {Grid.view.
|
|
1639
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance.
|
|
1624
1640
|
* @param {number} event.scrollTop The vertical scroll position.
|
|
1625
1641
|
*/
|
|
1626
|
-
onScroll? : ((event: { source:
|
|
1642
|
+
onScroll? : ((event: { source: GridBase, scrollTop: number }) => void)|string
|
|
1627
1643
|
/**
|
|
1628
1644
|
* The selection has been changed.
|
|
1629
1645
|
* @param {object} event Event object
|
|
@@ -1711,17 +1727,17 @@ export type BryntumResourceGridProps = {
|
|
|
1711
1727
|
/**
|
|
1712
1728
|
* Fires after a sub grid is collapsed.
|
|
1713
1729
|
* @param {object} event Event object
|
|
1714
|
-
* @param {Grid.view.
|
|
1730
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
1715
1731
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
1716
1732
|
*/
|
|
1717
|
-
onSubGridCollapse? : ((event: { source:
|
|
1733
|
+
onSubGridCollapse? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
1718
1734
|
/**
|
|
1719
1735
|
* Fires after a sub grid is expanded.
|
|
1720
1736
|
* @param {object} event Event object
|
|
1721
|
-
* @param {Grid.view.
|
|
1737
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
1722
1738
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
1723
1739
|
*/
|
|
1724
|
-
onSubGridExpand? : ((event: { source:
|
|
1740
|
+
onSubGridExpand? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
1725
1741
|
/**
|
|
1726
1742
|
* Fired when one or more groups are expanded or collapsed
|
|
1727
1743
|
* @param {object} event Event object
|
|
@@ -2162,6 +2178,7 @@ export class BryntumResourceGrid extends React.Component<BryntumResourceGridProp
|
|
|
2162
2178
|
'onBeforeCellEditStart',
|
|
2163
2179
|
'onBeforeCellRangeDelete',
|
|
2164
2180
|
'onBeforeCellRangeEdit',
|
|
2181
|
+
'onBeforeColumnCollapseToggle',
|
|
2165
2182
|
'onBeforeColumnDragStart',
|
|
2166
2183
|
'onBeforeColumnDropFinalize',
|
|
2167
2184
|
'onBeforeColumnResize',
|
|
@@ -2202,6 +2219,7 @@ export class BryntumResourceGrid extends React.Component<BryntumResourceGridProp
|
|
|
2202
2219
|
'onCellMouseOver',
|
|
2203
2220
|
'onCollapse',
|
|
2204
2221
|
'onCollapseNode',
|
|
2222
|
+
'onColumnCollapseToggle',
|
|
2205
2223
|
'onColumnDrag',
|
|
2206
2224
|
'onColumnDragStart',
|
|
2207
2225
|
'onColumnDrop',
|
|
@@ -1395,6 +1395,14 @@ export type BryntumResourceHistogramProps = {
|
|
|
1395
1395
|
* @param {any} event.value The value being set
|
|
1396
1396
|
*/
|
|
1397
1397
|
onBeforeCellRangeEdit? : ((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string
|
|
1398
|
+
/**
|
|
1399
|
+
* This event is triggered before a parent column is collapsed or expanded.
|
|
1400
|
+
* @param {object} event Event object
|
|
1401
|
+
* @param {Grid.view.GridBase} event.source The grid instance
|
|
1402
|
+
* @param {Grid.column.Column} event.column The column
|
|
1403
|
+
* @param {boolean} event.collapsed `true` if the column is being collapsed, `false` if expanded
|
|
1404
|
+
*/
|
|
1405
|
+
onBeforeColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
1398
1406
|
/**
|
|
1399
1407
|
* This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.
|
|
1400
1408
|
* @param {object} event Event object
|
|
@@ -1565,18 +1573,18 @@ export type BryntumResourceHistogramProps = {
|
|
|
1565
1573
|
/**
|
|
1566
1574
|
* Fires before a row is rendered.
|
|
1567
1575
|
* @param {object} event Event object
|
|
1568
|
-
* @param {Grid.view.
|
|
1569
|
-
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
1570
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
1571
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
1576
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
1577
|
+
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
1578
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
1579
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
1572
1580
|
*/
|
|
1573
|
-
onBeforeRenderRow? : ((event: { source:
|
|
1581
|
+
onBeforeRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
1574
1582
|
/**
|
|
1575
1583
|
* Grid rows are about to be rendered
|
|
1576
1584
|
* @param {object} event Event object
|
|
1577
|
-
* @param {Grid.view.
|
|
1585
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
1578
1586
|
*/
|
|
1579
|
-
onBeforeRenderRows? : ((event: { source:
|
|
1587
|
+
onBeforeRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
1580
1588
|
/**
|
|
1581
1589
|
* This event fires before row collapse is started.
|
|
1582
1590
|
* ...
|
|
@@ -1807,6 +1815,14 @@ export type BryntumResourceHistogramProps = {
|
|
|
1807
1815
|
* @param {Core.data.Model} event.record The record which has been collapsed.
|
|
1808
1816
|
*/
|
|
1809
1817
|
onCollapseNode? : ((event: { source: Grid, record: Model }) => void)|string
|
|
1818
|
+
/**
|
|
1819
|
+
* This event is triggered after a parent column has been collapsed or expanded.
|
|
1820
|
+
* @param {object} event Event object
|
|
1821
|
+
* @param {Grid.view.GridBase} event.source The Grid instance
|
|
1822
|
+
* @param {Grid.column.Column} event.column The column being toggled
|
|
1823
|
+
* @param {boolean} event.collapsed `true` if the column is now collapsed, `false` if expanded
|
|
1824
|
+
*/
|
|
1825
|
+
onColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
1810
1826
|
/**
|
|
1811
1827
|
* This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object
|
|
1812
1828
|
* to indicate whether the drop position is valid or not.
|
|
@@ -1895,14 +1911,14 @@ export type BryntumResourceHistogramProps = {
|
|
|
1895
1911
|
* ...
|
|
1896
1912
|
* [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/view/ResourceHistogram#event-dataChange)
|
|
1897
1913
|
* @param {object} event Event object
|
|
1898
|
-
* @param {Grid.view.
|
|
1914
|
+
* @param {Grid.view.GridBase} event.source Owning grid
|
|
1899
1915
|
* @param {Core.data.Store} event.store The originating store
|
|
1900
1916
|
* @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`
|
|
1901
1917
|
* @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)
|
|
1902
1918
|
* @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`
|
|
1903
1919
|
* @param {object} event.changes Passed for the `'update'` action, info on which record fields changed
|
|
1904
1920
|
*/
|
|
1905
|
-
onDataChange? : ((event: { source:
|
|
1921
|
+
onDataChange? : ((event: { source: GridBase, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string
|
|
1906
1922
|
/**
|
|
1907
1923
|
* Fired when the range of dates encapsulated by the UI changes. This will be when
|
|
1908
1924
|
* moving a view in time by reconfiguring its [timeAxis](https://bryntum.com/products/gantt/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen
|
|
@@ -2265,18 +2281,18 @@ export type BryntumResourceHistogramProps = {
|
|
|
2265
2281
|
/**
|
|
2266
2282
|
* Fires after a row is rendered.
|
|
2267
2283
|
* @param {object} event Event object
|
|
2268
|
-
* @param {Grid.view.
|
|
2269
|
-
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
2270
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
2271
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
2284
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
2285
|
+
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
2286
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
2287
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
2272
2288
|
*/
|
|
2273
|
-
onRenderRow? : ((event: { source:
|
|
2289
|
+
onRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
2274
2290
|
/**
|
|
2275
2291
|
* Grid rows have been rendered
|
|
2276
2292
|
* @param {object} event Event object
|
|
2277
|
-
* @param {Grid.view.
|
|
2293
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
2278
2294
|
*/
|
|
2279
|
-
onRenderRows? : ((event: { source:
|
|
2295
|
+
onRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
2280
2296
|
/**
|
|
2281
2297
|
* Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
|
|
2282
2298
|
* @param {object} event Event object
|
|
@@ -2531,10 +2547,10 @@ export type BryntumResourceHistogramProps = {
|
|
|
2531
2547
|
/**
|
|
2532
2548
|
* Grid has scrolled vertically
|
|
2533
2549
|
* @param {object} event Event object
|
|
2534
|
-
* @param {Grid.view.
|
|
2550
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance.
|
|
2535
2551
|
* @param {number} event.scrollTop The vertical scroll position.
|
|
2536
2552
|
*/
|
|
2537
|
-
onScroll? : ((event: { source:
|
|
2553
|
+
onScroll? : ((event: { source: GridBase, scrollTop: number }) => void)|string
|
|
2538
2554
|
/**
|
|
2539
2555
|
* The selection has been changed.
|
|
2540
2556
|
* @param {object} event Event object
|
|
@@ -2622,17 +2638,17 @@ export type BryntumResourceHistogramProps = {
|
|
|
2622
2638
|
/**
|
|
2623
2639
|
* Fires after a sub grid is collapsed.
|
|
2624
2640
|
* @param {object} event Event object
|
|
2625
|
-
* @param {Grid.view.
|
|
2641
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
2626
2642
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
2627
2643
|
*/
|
|
2628
|
-
onSubGridCollapse? : ((event: { source:
|
|
2644
|
+
onSubGridCollapse? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
2629
2645
|
/**
|
|
2630
2646
|
* Fires after a sub grid is expanded.
|
|
2631
2647
|
* @param {object} event Event object
|
|
2632
|
-
* @param {Grid.view.
|
|
2648
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
2633
2649
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
2634
2650
|
*/
|
|
2635
|
-
onSubGridExpand? : ((event: { source:
|
|
2651
|
+
onSubGridExpand? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
2636
2652
|
/**
|
|
2637
2653
|
* Fired when the tick size changes.
|
|
2638
2654
|
* ...
|
|
@@ -3429,6 +3445,7 @@ export class BryntumResourceHistogram extends React.Component<BryntumResourceHis
|
|
|
3429
3445
|
'onBeforeCellEditStart',
|
|
3430
3446
|
'onBeforeCellRangeDelete',
|
|
3431
3447
|
'onBeforeCellRangeEdit',
|
|
3448
|
+
'onBeforeColumnCollapseToggle',
|
|
3432
3449
|
'onBeforeColumnDragStart',
|
|
3433
3450
|
'onBeforeColumnDropFinalize',
|
|
3434
3451
|
'onBeforeColumnResize',
|
|
@@ -3475,6 +3492,7 @@ export class BryntumResourceHistogram extends React.Component<BryntumResourceHis
|
|
|
3475
3492
|
'onCellMouseOver',
|
|
3476
3493
|
'onCollapse',
|
|
3477
3494
|
'onCollapseNode',
|
|
3495
|
+
'onColumnCollapseToggle',
|
|
3478
3496
|
'onColumnDrag',
|
|
3479
3497
|
'onColumnDragStart',
|
|
3480
3498
|
'onColumnDrop',
|
|
@@ -1368,6 +1368,14 @@ export type BryntumResourceUtilizationProps = {
|
|
|
1368
1368
|
* @param {any} event.value The value being set
|
|
1369
1369
|
*/
|
|
1370
1370
|
onBeforeCellRangeEdit? : ((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string
|
|
1371
|
+
/**
|
|
1372
|
+
* This event is triggered before a parent column is collapsed or expanded.
|
|
1373
|
+
* @param {object} event Event object
|
|
1374
|
+
* @param {Grid.view.GridBase} event.source The grid instance
|
|
1375
|
+
* @param {Grid.column.Column} event.column The column
|
|
1376
|
+
* @param {boolean} event.collapsed `true` if the column is being collapsed, `false` if expanded
|
|
1377
|
+
*/
|
|
1378
|
+
onBeforeColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
1371
1379
|
/**
|
|
1372
1380
|
* This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.
|
|
1373
1381
|
* @param {object} event Event object
|
|
@@ -1555,18 +1563,18 @@ export type BryntumResourceUtilizationProps = {
|
|
|
1555
1563
|
/**
|
|
1556
1564
|
* Fires before a row is rendered.
|
|
1557
1565
|
* @param {object} event Event object
|
|
1558
|
-
* @param {Grid.view.
|
|
1559
|
-
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
1560
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
1561
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
1566
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
1567
|
+
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
1568
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
1569
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
1562
1570
|
*/
|
|
1563
|
-
onBeforeRenderRow? : ((event: { source:
|
|
1571
|
+
onBeforeRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
1564
1572
|
/**
|
|
1565
1573
|
* Grid rows are about to be rendered
|
|
1566
1574
|
* @param {object} event Event object
|
|
1567
|
-
* @param {Grid.view.
|
|
1575
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
1568
1576
|
*/
|
|
1569
|
-
onBeforeRenderRows? : ((event: { source:
|
|
1577
|
+
onBeforeRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
1570
1578
|
/**
|
|
1571
1579
|
* This event fires before row collapse is started.
|
|
1572
1580
|
* ...
|
|
@@ -1797,6 +1805,14 @@ export type BryntumResourceUtilizationProps = {
|
|
|
1797
1805
|
* @param {Core.data.Model} event.record The record which has been collapsed.
|
|
1798
1806
|
*/
|
|
1799
1807
|
onCollapseNode? : ((event: { source: Grid, record: Model }) => void)|string
|
|
1808
|
+
/**
|
|
1809
|
+
* This event is triggered after a parent column has been collapsed or expanded.
|
|
1810
|
+
* @param {object} event Event object
|
|
1811
|
+
* @param {Grid.view.GridBase} event.source The Grid instance
|
|
1812
|
+
* @param {Grid.column.Column} event.column The column being toggled
|
|
1813
|
+
* @param {boolean} event.collapsed `true` if the column is now collapsed, `false` if expanded
|
|
1814
|
+
*/
|
|
1815
|
+
onColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
1800
1816
|
/**
|
|
1801
1817
|
* This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object
|
|
1802
1818
|
* to indicate whether the drop position is valid or not.
|
|
@@ -1894,14 +1910,14 @@ export type BryntumResourceUtilizationProps = {
|
|
|
1894
1910
|
* ...
|
|
1895
1911
|
* [View online docs...](https://bryntum.com/products/gantt/docs/api/SchedulerPro/view/ResourceUtilization#event-dataChange)
|
|
1896
1912
|
* @param {object} event Event object
|
|
1897
|
-
* @param {Grid.view.
|
|
1913
|
+
* @param {Grid.view.GridBase} event.source Owning grid
|
|
1898
1914
|
* @param {Core.data.Store} event.store The originating store
|
|
1899
1915
|
* @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`
|
|
1900
1916
|
* @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)
|
|
1901
1917
|
* @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`
|
|
1902
1918
|
* @param {object} event.changes Passed for the `'update'` action, info on which record fields changed
|
|
1903
1919
|
*/
|
|
1904
|
-
onDataChange? : ((event: { source:
|
|
1920
|
+
onDataChange? : ((event: { source: GridBase, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string
|
|
1905
1921
|
/**
|
|
1906
1922
|
* Fired when the range of dates encapsulated by the UI changes. This will be when
|
|
1907
1923
|
* moving a view in time by reconfiguring its [timeAxis](https://bryntum.com/products/gantt/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen
|
|
@@ -2264,18 +2280,18 @@ export type BryntumResourceUtilizationProps = {
|
|
|
2264
2280
|
/**
|
|
2265
2281
|
* Fires after a row is rendered.
|
|
2266
2282
|
* @param {object} event Event object
|
|
2267
|
-
* @param {Grid.view.
|
|
2268
|
-
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
2269
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
2270
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
2283
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
2284
|
+
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
2285
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
2286
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
2271
2287
|
*/
|
|
2272
|
-
onRenderRow? : ((event: { source:
|
|
2288
|
+
onRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
2273
2289
|
/**
|
|
2274
2290
|
* Grid rows have been rendered
|
|
2275
2291
|
* @param {object} event Event object
|
|
2276
|
-
* @param {Grid.view.
|
|
2292
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
2277
2293
|
*/
|
|
2278
|
-
onRenderRows? : ((event: { source:
|
|
2294
|
+
onRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
2279
2295
|
/**
|
|
2280
2296
|
* Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
|
|
2281
2297
|
* @param {object} event Event object
|
|
@@ -2530,10 +2546,10 @@ export type BryntumResourceUtilizationProps = {
|
|
|
2530
2546
|
/**
|
|
2531
2547
|
* Grid has scrolled vertically
|
|
2532
2548
|
* @param {object} event Event object
|
|
2533
|
-
* @param {Grid.view.
|
|
2549
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance.
|
|
2534
2550
|
* @param {number} event.scrollTop The vertical scroll position.
|
|
2535
2551
|
*/
|
|
2536
|
-
onScroll? : ((event: { source:
|
|
2552
|
+
onScroll? : ((event: { source: GridBase, scrollTop: number }) => void)|string
|
|
2537
2553
|
/**
|
|
2538
2554
|
* The selection has been changed.
|
|
2539
2555
|
* @param {object} event Event object
|
|
@@ -2621,17 +2637,17 @@ export type BryntumResourceUtilizationProps = {
|
|
|
2621
2637
|
/**
|
|
2622
2638
|
* Fires after a sub grid is collapsed.
|
|
2623
2639
|
* @param {object} event Event object
|
|
2624
|
-
* @param {Grid.view.
|
|
2640
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
2625
2641
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
2626
2642
|
*/
|
|
2627
|
-
onSubGridCollapse? : ((event: { source:
|
|
2643
|
+
onSubGridCollapse? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
2628
2644
|
/**
|
|
2629
2645
|
* Fires after a sub grid is expanded.
|
|
2630
2646
|
* @param {object} event Event object
|
|
2631
|
-
* @param {Grid.view.
|
|
2647
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
2632
2648
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
2633
2649
|
*/
|
|
2634
|
-
onSubGridExpand? : ((event: { source:
|
|
2650
|
+
onSubGridExpand? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
2635
2651
|
/**
|
|
2636
2652
|
* Fired when the tick size changes.
|
|
2637
2653
|
* ...
|
|
@@ -3439,6 +3455,7 @@ export class BryntumResourceUtilization extends React.Component<BryntumResourceU
|
|
|
3439
3455
|
'onBeforeCellEditStart',
|
|
3440
3456
|
'onBeforeCellRangeDelete',
|
|
3441
3457
|
'onBeforeCellRangeEdit',
|
|
3458
|
+
'onBeforeColumnCollapseToggle',
|
|
3442
3459
|
'onBeforeColumnDragStart',
|
|
3443
3460
|
'onBeforeColumnDropFinalize',
|
|
3444
3461
|
'onBeforeColumnResize',
|
|
@@ -3487,6 +3504,7 @@ export class BryntumResourceUtilization extends React.Component<BryntumResourceU
|
|
|
3487
3504
|
'onCellMouseOver',
|
|
3488
3505
|
'onCollapse',
|
|
3489
3506
|
'onCollapseNode',
|
|
3507
|
+
'onColumnCollapseToggle',
|
|
3490
3508
|
'onColumnDrag',
|
|
3491
3509
|
'onColumnDragStart',
|
|
3492
3510
|
'onColumnDrop',
|
package/src/BryntumScheduler.tsx
CHANGED
|
@@ -1715,6 +1715,14 @@ export type BryntumSchedulerProps = {
|
|
|
1715
1715
|
* @param {any} event.value The value being set
|
|
1716
1716
|
*/
|
|
1717
1717
|
onBeforeCellRangeEdit? : ((event: { record: Model, field: string, value: any }) => Promise<boolean>|boolean|void)|string
|
|
1718
|
+
/**
|
|
1719
|
+
* This event is triggered before a parent column is collapsed or expanded.
|
|
1720
|
+
* @param {object} event Event object
|
|
1721
|
+
* @param {Grid.view.GridBase} event.source The grid instance
|
|
1722
|
+
* @param {Grid.column.Column} event.column The column
|
|
1723
|
+
* @param {boolean} event.collapsed `true` if the column is being collapsed, `false` if expanded
|
|
1724
|
+
*/
|
|
1725
|
+
onBeforeColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
1718
1726
|
/**
|
|
1719
1727
|
* This event is fired prior to starting a column drag gesture. The drag is canceled if a listener returns `false`.
|
|
1720
1728
|
* @param {object} event Event object
|
|
@@ -2088,18 +2096,18 @@ export type BryntumSchedulerProps = {
|
|
|
2088
2096
|
/**
|
|
2089
2097
|
* Fires before a row is rendered.
|
|
2090
2098
|
* @param {object} event Event object
|
|
2091
|
-
* @param {Grid.view.
|
|
2092
|
-
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
2093
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
2094
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
2099
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
2100
|
+
* @param {Grid.row.Row} event.row The row about to be rendered
|
|
2101
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
2102
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
2095
2103
|
*/
|
|
2096
|
-
onBeforeRenderRow? : ((event: { source:
|
|
2104
|
+
onBeforeRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
2097
2105
|
/**
|
|
2098
2106
|
* Grid rows are about to be rendered
|
|
2099
2107
|
* @param {object} event Event object
|
|
2100
|
-
* @param {Grid.view.
|
|
2108
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
2101
2109
|
*/
|
|
2102
|
-
onBeforeRenderRows? : ((event: { source:
|
|
2110
|
+
onBeforeRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
2103
2111
|
/**
|
|
2104
2112
|
* This event fires before row collapse is started.
|
|
2105
2113
|
* ...
|
|
@@ -2348,6 +2356,14 @@ export type BryntumSchedulerProps = {
|
|
|
2348
2356
|
* @param {Core.data.Model} event.record The record which has been collapsed.
|
|
2349
2357
|
*/
|
|
2350
2358
|
onCollapseNode? : ((event: { source: Grid, record: Model }) => void)|string
|
|
2359
|
+
/**
|
|
2360
|
+
* This event is triggered after a parent column has been collapsed or expanded.
|
|
2361
|
+
* @param {object} event Event object
|
|
2362
|
+
* @param {Grid.view.GridBase} event.source The Grid instance
|
|
2363
|
+
* @param {Grid.column.Column} event.column The column being toggled
|
|
2364
|
+
* @param {boolean} event.collapsed `true` if the column is now collapsed, `false` if expanded
|
|
2365
|
+
*/
|
|
2366
|
+
onColumnCollapseToggle? : ((event: { source: GridBase, column: Column, collapsed: boolean }) => void)|string
|
|
2351
2367
|
/**
|
|
2352
2368
|
* This event is fired when a column is being dragged, and you can set the `valid` flag on the `context` object
|
|
2353
2369
|
* to indicate whether the drop position is valid or not.
|
|
@@ -2436,14 +2452,14 @@ export type BryntumSchedulerProps = {
|
|
|
2436
2452
|
* ...
|
|
2437
2453
|
* [View online docs...](https://bryntum.com/products/gantt/docs/api/Scheduler/view/Scheduler#event-dataChange)
|
|
2438
2454
|
* @param {object} event Event object
|
|
2439
|
-
* @param {Grid.view.
|
|
2455
|
+
* @param {Grid.view.GridBase} event.source Owning grid
|
|
2440
2456
|
* @param {Core.data.Store} event.store The originating store
|
|
2441
2457
|
* @param {'remove','removeAll','add','clearchanges','filter','update','dataset','replace'} event.action Name of action which triggered the change. May be one of: * `'remove'` * `'removeAll'` * `'add'` * `'clearchanges'` * `'filter'` * `'update'` * `'dataset'` * `'replace'`
|
|
2442
2458
|
* @param {Core.data.Model} event.record Changed record, for actions that affects exactly one record (`'update'`)
|
|
2443
2459
|
* @param {Core.data.Model[]} event.records Changed records, passed for all actions except `'removeAll'`
|
|
2444
2460
|
* @param {object} event.changes Passed for the `'update'` action, info on which record fields changed
|
|
2445
2461
|
*/
|
|
2446
|
-
onDataChange? : ((event: { source:
|
|
2462
|
+
onDataChange? : ((event: { source: GridBase, store: Store, action: 'remove'|'removeAll'|'add'|'clearchanges'|'filter'|'update'|'dataset'|'replace', record: Model, records: Model[], changes: object }) => void)|string
|
|
2447
2463
|
/**
|
|
2448
2464
|
* Fired when the range of dates encapsulated by the UI changes. This will be when
|
|
2449
2465
|
* moving a view in time by reconfiguring its [timeAxis](https://bryntum.com/products/gantt/docs/api/Scheduler/view/TimelineBase#config-timeAxis). This will happen
|
|
@@ -3302,18 +3318,18 @@ export type BryntumSchedulerProps = {
|
|
|
3302
3318
|
/**
|
|
3303
3319
|
* Fires after a row is rendered.
|
|
3304
3320
|
* @param {object} event Event object
|
|
3305
|
-
* @param {Grid.view.
|
|
3306
|
-
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
3307
|
-
* @param {Core.data.Model} event.record The record for the row
|
|
3308
|
-
* @param {number} event.recordIndex The zero-based index of the record
|
|
3321
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
3322
|
+
* @param {Grid.row.Row} event.row The row that has been rendered
|
|
3323
|
+
* @param {Core.data.Model} event.record The record for the row
|
|
3324
|
+
* @param {number} event.recordIndex The zero-based index of the record
|
|
3309
3325
|
*/
|
|
3310
|
-
onRenderRow? : ((event: { source:
|
|
3326
|
+
onRenderRow? : ((event: { source: GridBase, row: Row, record: Model, recordIndex: number }) => void)|string
|
|
3311
3327
|
/**
|
|
3312
3328
|
* Grid rows have been rendered
|
|
3313
3329
|
* @param {object} event Event object
|
|
3314
|
-
* @param {Grid.view.
|
|
3330
|
+
* @param {Grid.view.GridBase} event.source This grid.
|
|
3315
3331
|
*/
|
|
3316
|
-
onRenderRows? : ((event: { source:
|
|
3332
|
+
onRenderRows? : ((event: { source: GridBase }) => void)|string
|
|
3317
3333
|
/**
|
|
3318
3334
|
* Fired when the encapsulating element of a Widget resizes *only when [monitorResize](https://bryntum.com/products/gantt/docs/api/Core/widget/Widget#config-monitorResize) is `true`*.
|
|
3319
3335
|
* @param {object} event Event object
|
|
@@ -3655,10 +3671,10 @@ export type BryntumSchedulerProps = {
|
|
|
3655
3671
|
/**
|
|
3656
3672
|
* Grid has scrolled vertically
|
|
3657
3673
|
* @param {object} event Event object
|
|
3658
|
-
* @param {Grid.view.
|
|
3674
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance.
|
|
3659
3675
|
* @param {number} event.scrollTop The vertical scroll position.
|
|
3660
3676
|
*/
|
|
3661
|
-
onScroll? : ((event: { source:
|
|
3677
|
+
onScroll? : ((event: { source: GridBase, scrollTop: number }) => void)|string
|
|
3662
3678
|
/**
|
|
3663
3679
|
* Fires on owner when the scroll button is clicked, return `false` to prevent default scroll behavior
|
|
3664
3680
|
* @param {object} event Event object
|
|
@@ -3762,17 +3778,17 @@ export type BryntumSchedulerProps = {
|
|
|
3762
3778
|
/**
|
|
3763
3779
|
* Fires after a sub grid is collapsed.
|
|
3764
3780
|
* @param {object} event Event object
|
|
3765
|
-
* @param {Grid.view.
|
|
3781
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
3766
3782
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
3767
3783
|
*/
|
|
3768
|
-
onSubGridCollapse? : ((event: { source:
|
|
3784
|
+
onSubGridCollapse? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
3769
3785
|
/**
|
|
3770
3786
|
* Fires after a sub grid is expanded.
|
|
3771
3787
|
* @param {object} event Event object
|
|
3772
|
-
* @param {Grid.view.
|
|
3788
|
+
* @param {Grid.view.GridBase} event.source The firing Grid instance
|
|
3773
3789
|
* @param {Grid.view.SubGrid} event.subGrid The sub grid instance
|
|
3774
3790
|
*/
|
|
3775
|
-
onSubGridExpand? : ((event: { source:
|
|
3791
|
+
onSubGridExpand? : ((event: { source: GridBase, subGrid: SubGrid }) => void)|string
|
|
3776
3792
|
/**
|
|
3777
3793
|
* Triggered for click on a tick cell. Only triggered if the TreeSummary feature is configured with
|
|
3778
3794
|
* `[enableMouseEvents](https://bryntum.com/products/gantt/docs/api/Scheduler/feature/TreeSummary#config-enableMouseEvents): true`.
|
|
@@ -4837,6 +4853,7 @@ export class BryntumScheduler extends React.Component<BryntumSchedulerProps> {
|
|
|
4837
4853
|
'onBeforeCellEditStart',
|
|
4838
4854
|
'onBeforeCellRangeDelete',
|
|
4839
4855
|
'onBeforeCellRangeEdit',
|
|
4856
|
+
'onBeforeColumnCollapseToggle',
|
|
4840
4857
|
'onBeforeColumnDragStart',
|
|
4841
4858
|
'onBeforeColumnDropFinalize',
|
|
4842
4859
|
'onBeforeColumnResize',
|
|
@@ -4902,6 +4919,7 @@ export class BryntumScheduler extends React.Component<BryntumSchedulerProps> {
|
|
|
4902
4919
|
'onCellMouseOver',
|
|
4903
4920
|
'onCollapse',
|
|
4904
4921
|
'onCollapseNode',
|
|
4922
|
+
'onColumnCollapseToggle',
|
|
4905
4923
|
'onColumnDrag',
|
|
4906
4924
|
'onColumnDragStart',
|
|
4907
4925
|
'onColumnDrop',
|