@openui5/types 1.122.1 → 1.123.1
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/package.json +1 -1
- package/types/sap.f.d.ts +435 -98
- package/types/sap.m.d.ts +3963 -401
- package/types/sap.tnt.d.ts +46 -10
- package/types/sap.ui.codeeditor.d.ts +16 -2
- package/types/sap.ui.commons.d.ts +797 -121
- package/types/sap.ui.core.d.ts +13204 -12618
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +40 -3
- package/types/sap.ui.integration.d.ts +147 -9
- package/types/sap.ui.layout.d.ts +171 -47
- package/types/sap.ui.mdc.d.ts +554 -71
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +27 -3
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +278 -74
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +481 -42
- package/types/sap.ui.ux3.d.ts +527 -34
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +351 -29
- package/types/sap.ui.webc.main.d.ts +1035 -83
- package/types/sap.uxap.d.ts +123 -23
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.123.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -43,7 +43,7 @@ declare module "sap/ui/table/library" {
|
|
|
43
43
|
*
|
|
44
44
|
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'NavigationMode'.
|
|
45
45
|
*
|
|
46
|
-
* @deprecated (since 1.38)
|
|
46
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
47
47
|
*/
|
|
48
48
|
export enum NavigationMode {
|
|
49
49
|
/**
|
|
@@ -65,7 +65,7 @@ declare module "sap/ui/table/library" {
|
|
|
65
65
|
*
|
|
66
66
|
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'ResetAllMode'.
|
|
67
67
|
*
|
|
68
|
-
* @deprecated (since 1.115)
|
|
68
|
+
* @deprecated (since 1.115) - replaced by {@link sap.m.p13n.Engine}
|
|
69
69
|
*/
|
|
70
70
|
export enum ResetAllMode {
|
|
71
71
|
/**
|
|
@@ -184,7 +184,7 @@ declare module "sap/ui/table/library" {
|
|
|
184
184
|
*
|
|
185
185
|
* This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
|
|
186
186
|
*
|
|
187
|
-
* @deprecated (since 1.120)
|
|
187
|
+
* @deprecated (since 1.120) - replaced by `sap.ui.model.TreeAutoExpandMode`
|
|
188
188
|
*/
|
|
189
189
|
export type TreeAutoExpandMode = TreeAutoExpandMode1;
|
|
190
190
|
|
|
@@ -193,7 +193,7 @@ declare module "sap/ui/table/library" {
|
|
|
193
193
|
*
|
|
194
194
|
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'VisibleRowCountMode'.
|
|
195
195
|
*
|
|
196
|
-
* @deprecated (since 1.119)
|
|
196
|
+
* @deprecated (since 1.119) - see the `rowMode` aggregation of `sap.ui.table.Table` for more details.
|
|
197
197
|
*/
|
|
198
198
|
export enum VisibleRowCountMode {
|
|
199
199
|
/**
|
|
@@ -467,7 +467,9 @@ declare module "sap/ui/table/AnalyticalColumn" {
|
|
|
467
467
|
bSummed?: boolean
|
|
468
468
|
): this;
|
|
469
469
|
}
|
|
470
|
-
|
|
470
|
+
/**
|
|
471
|
+
* Describes the settings that can be provided to the AnalyticalColumn constructor.
|
|
472
|
+
*/
|
|
471
473
|
export interface $AnalyticalColumnSettings extends $ColumnSettings {
|
|
472
474
|
/**
|
|
473
475
|
* Defines the primary model property which is used inside the Column. In case of the analytical extension
|
|
@@ -517,7 +519,7 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
|
|
|
517
519
|
/**
|
|
518
520
|
* A column menu which is used by the analytical column
|
|
519
521
|
*
|
|
520
|
-
* @deprecated (since 1.117)
|
|
522
|
+
* @deprecated (since 1.117) - replaced by the `headerMenu` association of `sap.ui.table.Column`.
|
|
521
523
|
* @experimental (since 1.21)
|
|
522
524
|
*/
|
|
523
525
|
export default class AnalyticalColumnMenu extends ColumnMenu {
|
|
@@ -590,7 +592,12 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
|
|
|
590
592
|
*/
|
|
591
593
|
static getMetadata(): ElementMetadata;
|
|
592
594
|
}
|
|
593
|
-
|
|
595
|
+
/**
|
|
596
|
+
* Describes the settings that can be provided to the AnalyticalColumnMenu constructor.
|
|
597
|
+
*
|
|
598
|
+
* @deprecated (since 1.117) - replaced by the `headerMenu` association of `sap.ui.table.Column`.
|
|
599
|
+
* @experimental (since 1.21)
|
|
600
|
+
*/
|
|
594
601
|
export interface $AnalyticalColumnMenuSettings extends $ColumnMenuSettings {}
|
|
595
602
|
}
|
|
596
603
|
|
|
@@ -898,7 +905,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
898
905
|
* Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
|
|
899
906
|
* return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
|
|
900
907
|
*
|
|
901
|
-
* @deprecated (since 1.117)
|
|
908
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
902
909
|
*
|
|
903
910
|
* @returns Value of property `columnVisibilityMenuSorter`
|
|
904
911
|
*/
|
|
@@ -914,15 +921,15 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
914
921
|
*/
|
|
915
922
|
getDirty(): boolean;
|
|
916
923
|
/**
|
|
917
|
-
* The
|
|
924
|
+
* The `enableGrouping` property is not supported by the `AnalyticalTable` control.
|
|
918
925
|
*
|
|
919
|
-
* @deprecated (since 1.28)
|
|
926
|
+
* @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `AnalyticalTable` control.
|
|
920
927
|
*/
|
|
921
928
|
getEnableGrouping(): boolean;
|
|
922
929
|
/**
|
|
923
930
|
* The `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
924
931
|
*
|
|
925
|
-
* @deprecated (since 1.28)
|
|
932
|
+
* @deprecated (since 1.28) - the `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
926
933
|
*/
|
|
927
934
|
getGroupBy(): ID;
|
|
928
935
|
/**
|
|
@@ -1159,7 +1166,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1159
1166
|
*
|
|
1160
1167
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
1161
1168
|
*
|
|
1162
|
-
* @deprecated (since 1.117)
|
|
1169
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
1163
1170
|
*
|
|
1164
1171
|
* @returns Reference to `this` in order to allow method chaining
|
|
1165
1172
|
*/
|
|
@@ -1187,9 +1194,9 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1187
1194
|
bDirty?: boolean
|
|
1188
1195
|
): this;
|
|
1189
1196
|
/**
|
|
1190
|
-
* The
|
|
1197
|
+
* The `enableGrouping` property is not supported by the `AnalyticalTable` control.
|
|
1191
1198
|
*
|
|
1192
|
-
* @deprecated (since 1.28)
|
|
1199
|
+
* @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `AnalyticalTable` control.
|
|
1193
1200
|
*
|
|
1194
1201
|
* @returns Reference to `this` in order to allow method chaining
|
|
1195
1202
|
*/
|
|
@@ -1197,7 +1204,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1197
1204
|
/**
|
|
1198
1205
|
* The `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
1199
1206
|
*
|
|
1200
|
-
* @deprecated (since 1.28)
|
|
1207
|
+
* @deprecated (since 1.28) - the `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
1201
1208
|
*
|
|
1202
1209
|
* @returns Reference to `this` in order to allow method chaining
|
|
1203
1210
|
*/
|
|
@@ -1315,7 +1322,9 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1315
1322
|
*/
|
|
1316
1323
|
suspendUpdateAnalyticalInfo(): void;
|
|
1317
1324
|
}
|
|
1318
|
-
|
|
1325
|
+
/**
|
|
1326
|
+
* Describes the settings that can be provided to the AnalyticalTable constructor.
|
|
1327
|
+
*/
|
|
1319
1328
|
export interface $AnalyticalTableSettings extends $TableSettings {
|
|
1320
1329
|
/**
|
|
1321
1330
|
* Specifies if the total values should be displayed in the group headers or on bottom of the row. Does
|
|
@@ -1392,7 +1401,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1392
1401
|
* Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
|
|
1393
1402
|
* return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
|
|
1394
1403
|
*
|
|
1395
|
-
* @deprecated (since 1.117)
|
|
1404
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
1396
1405
|
*/
|
|
1397
1406
|
columnVisibilityMenuSorter?: any | PropertyBindingInfo | `{${string}}`;
|
|
1398
1407
|
|
|
@@ -1434,9 +1443,15 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1434
1443
|
group?: (oEvent: AnalyticalTable$GroupEvent) => void;
|
|
1435
1444
|
}
|
|
1436
1445
|
|
|
1446
|
+
/**
|
|
1447
|
+
* Parameters of the AnalyticalTable#group event.
|
|
1448
|
+
*/
|
|
1437
1449
|
export interface AnalyticalTable$GroupEventParameters
|
|
1438
1450
|
extends Table$GroupEventParameters {}
|
|
1439
1451
|
|
|
1452
|
+
/**
|
|
1453
|
+
* Event object of the AnalyticalTable#group event.
|
|
1454
|
+
*/
|
|
1440
1455
|
export type AnalyticalTable$GroupEvent = Event<
|
|
1441
1456
|
AnalyticalTable$GroupEventParameters,
|
|
1442
1457
|
AnalyticalTable
|
|
@@ -1556,7 +1571,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1556
1571
|
* Fires before the column menu is opened.
|
|
1557
1572
|
*
|
|
1558
1573
|
* @since 1.33.0
|
|
1559
|
-
* @deprecated (since 1.117)
|
|
1574
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
|
|
1560
1575
|
*
|
|
1561
1576
|
* @returns Reference to `this` in order to allow method chaining
|
|
1562
1577
|
*/
|
|
@@ -1585,7 +1600,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1585
1600
|
* Fires before the column menu is opened.
|
|
1586
1601
|
*
|
|
1587
1602
|
* @since 1.33.0
|
|
1588
|
-
* @deprecated (since 1.117)
|
|
1603
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
|
|
1589
1604
|
*
|
|
1590
1605
|
* @returns Reference to `this` in order to allow method chaining
|
|
1591
1606
|
*/
|
|
@@ -1636,7 +1651,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1636
1651
|
* The passed function and listener object must match the ones used for event registration.
|
|
1637
1652
|
*
|
|
1638
1653
|
* @since 1.33.0
|
|
1639
|
-
* @deprecated (since 1.117)
|
|
1654
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
|
|
1640
1655
|
*
|
|
1641
1656
|
* @returns Reference to `this` in order to allow method chaining
|
|
1642
1657
|
*/
|
|
@@ -1657,7 +1672,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1657
1672
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
1658
1673
|
*
|
|
1659
1674
|
* @since 1.33.0
|
|
1660
|
-
* @deprecated (since 1.117)
|
|
1675
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
|
|
1661
1676
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1662
1677
|
*
|
|
1663
1678
|
* @returns Whether or not to prevent the default action
|
|
@@ -1798,7 +1813,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1798
1813
|
*
|
|
1799
1814
|
* Default value is `false`.
|
|
1800
1815
|
*
|
|
1801
|
-
* @deprecated (since 1.118)
|
|
1816
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property of `sap.ui.table.Table` for details.
|
|
1802
1817
|
*
|
|
1803
1818
|
* @returns Value of property `grouped`
|
|
1804
1819
|
*/
|
|
@@ -2259,7 +2274,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2259
2274
|
*
|
|
2260
2275
|
* Default value is `false`.
|
|
2261
2276
|
*
|
|
2262
|
-
* @deprecated (since 1.118)
|
|
2277
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property of `sap.ui.table.Table` for details.
|
|
2263
2278
|
*
|
|
2264
2279
|
* @returns Reference to `this` in order to allow method chaining
|
|
2265
2280
|
*/
|
|
@@ -2590,7 +2605,9 @@ declare module "sap/ui/table/Column" {
|
|
|
2590
2605
|
*/
|
|
2591
2606
|
toggleSort(): void;
|
|
2592
2607
|
}
|
|
2593
|
-
|
|
2608
|
+
/**
|
|
2609
|
+
* Describes the settings that can be provided to the Column constructor.
|
|
2610
|
+
*/
|
|
2594
2611
|
export interface $ColumnSettings extends $ElementSettings {
|
|
2595
2612
|
/**
|
|
2596
2613
|
* Width of the column in CSS units. Default value is `auto`, see
|
|
@@ -2736,7 +2753,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2736
2753
|
/**
|
|
2737
2754
|
* Indicates if the column is grouped.
|
|
2738
2755
|
*
|
|
2739
|
-
* @deprecated (since 1.118)
|
|
2756
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property of `sap.ui.table.Table` for details.
|
|
2740
2757
|
*/
|
|
2741
2758
|
grouped?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2742
2759
|
|
|
@@ -2843,11 +2860,16 @@ declare module "sap/ui/table/Column" {
|
|
|
2843
2860
|
* Fires before the column menu is opened.
|
|
2844
2861
|
*
|
|
2845
2862
|
* @since 1.33.0
|
|
2846
|
-
* @deprecated (since 1.117)
|
|
2863
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
|
|
2847
2864
|
*/
|
|
2848
2865
|
columnMenuOpen?: (oEvent: Column$ColumnMenuOpenEvent) => void;
|
|
2849
2866
|
}
|
|
2850
2867
|
|
|
2868
|
+
/**
|
|
2869
|
+
* Parameters of the Column#columnMenuOpen event.
|
|
2870
|
+
*
|
|
2871
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
|
|
2872
|
+
*/
|
|
2851
2873
|
export interface Column$ColumnMenuOpenEventParameters {
|
|
2852
2874
|
/**
|
|
2853
2875
|
* Refence to the selected `menu` instance to be opened.
|
|
@@ -2855,6 +2877,11 @@ declare module "sap/ui/table/Column" {
|
|
|
2855
2877
|
menu?: Menu;
|
|
2856
2878
|
}
|
|
2857
2879
|
|
|
2880
|
+
/**
|
|
2881
|
+
* Event object of the Column#columnMenuOpen event.
|
|
2882
|
+
*
|
|
2883
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation for details.
|
|
2884
|
+
*/
|
|
2858
2885
|
export type Column$ColumnMenuOpenEvent = Event<
|
|
2859
2886
|
Column$ColumnMenuOpenEventParameters,
|
|
2860
2887
|
Column
|
|
@@ -2949,7 +2976,11 @@ declare module "sap/ui/table/ColumnMenu" {
|
|
|
2949
2976
|
*/
|
|
2950
2977
|
static getMetadata(): ElementMetadata;
|
|
2951
2978
|
}
|
|
2952
|
-
|
|
2979
|
+
/**
|
|
2980
|
+
* Describes the settings that can be provided to the ColumnMenu constructor.
|
|
2981
|
+
*
|
|
2982
|
+
* @deprecated (since 1.117) - use the {@link sap.m.table.columnmenu.Menu} instead.
|
|
2983
|
+
*/
|
|
2953
2984
|
export interface $ColumnMenuSettings extends $MenuSettings {}
|
|
2954
2985
|
}
|
|
2955
2986
|
|
|
@@ -3398,7 +3429,9 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3398
3429
|
bShowHeaderSelector?: boolean
|
|
3399
3430
|
): this;
|
|
3400
3431
|
}
|
|
3401
|
-
|
|
3432
|
+
/**
|
|
3433
|
+
* Describes the settings that can be provided to the MultiSelectionPlugin constructor.
|
|
3434
|
+
*/
|
|
3402
3435
|
export interface $MultiSelectionPluginSettings
|
|
3403
3436
|
extends $SelectionPluginSettings {
|
|
3404
3437
|
/**
|
|
@@ -3446,6 +3479,9 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3446
3479
|
) => void;
|
|
3447
3480
|
}
|
|
3448
3481
|
|
|
3482
|
+
/**
|
|
3483
|
+
* Parameters of the MultiSelectionPlugin#selectionChange event.
|
|
3484
|
+
*/
|
|
3449
3485
|
export interface MultiSelectionPlugin$SelectionChangeEventParameters
|
|
3450
3486
|
extends SelectionPlugin$SelectionChangeEventParameters {
|
|
3451
3487
|
/**
|
|
@@ -3464,6 +3500,9 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3464
3500
|
customPayload?: object;
|
|
3465
3501
|
}
|
|
3466
3502
|
|
|
3503
|
+
/**
|
|
3504
|
+
* Event object of the MultiSelectionPlugin#selectionChange event.
|
|
3505
|
+
*/
|
|
3467
3506
|
export type MultiSelectionPlugin$SelectionChangeEvent = Event<
|
|
3468
3507
|
MultiSelectionPlugin$SelectionChangeEventParameters,
|
|
3469
3508
|
MultiSelectionPlugin
|
|
@@ -3659,7 +3698,11 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3659
3698
|
bEnabled?: boolean
|
|
3660
3699
|
): this;
|
|
3661
3700
|
}
|
|
3662
|
-
|
|
3701
|
+
/**
|
|
3702
|
+
* Describes the settings that can be provided to the SelectionPlugin constructor.
|
|
3703
|
+
*
|
|
3704
|
+
* @experimental (since 1.64)
|
|
3705
|
+
*/
|
|
3663
3706
|
export interface $SelectionPluginSettings extends $ElementSettings {
|
|
3664
3707
|
/**
|
|
3665
3708
|
* Indicates whether this plugin is enabled.
|
|
@@ -3672,8 +3715,14 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3672
3715
|
selectionChange?: (oEvent: Event) => void;
|
|
3673
3716
|
}
|
|
3674
3717
|
|
|
3718
|
+
/**
|
|
3719
|
+
* Parameters of the SelectionPlugin#selectionChange event.
|
|
3720
|
+
*/
|
|
3675
3721
|
export interface SelectionPlugin$SelectionChangeEventParameters {}
|
|
3676
3722
|
|
|
3723
|
+
/**
|
|
3724
|
+
* Event object of the SelectionPlugin#selectionChange event.
|
|
3725
|
+
*/
|
|
3677
3726
|
export type SelectionPlugin$SelectionChangeEvent = Event<
|
|
3678
3727
|
SelectionPlugin$SelectionChangeEventParameters,
|
|
3679
3728
|
SelectionPlugin
|
|
@@ -3843,7 +3892,9 @@ declare module "sap/ui/table/Row" {
|
|
|
3843
3892
|
vCell: int | string | Control
|
|
3844
3893
|
): Control | null;
|
|
3845
3894
|
}
|
|
3846
|
-
|
|
3895
|
+
/**
|
|
3896
|
+
* Describes the settings that can be provided to the Row constructor.
|
|
3897
|
+
*/
|
|
3847
3898
|
export interface $RowSettings extends $ElementSettings {
|
|
3848
3899
|
/**
|
|
3849
3900
|
* The actual cells are a table-internal construct. The controls in this aggregation are the content of
|
|
@@ -4043,7 +4094,9 @@ declare module "sap/ui/table/RowAction" {
|
|
|
4043
4094
|
bVisible?: boolean
|
|
4044
4095
|
): this;
|
|
4045
4096
|
}
|
|
4046
|
-
|
|
4097
|
+
/**
|
|
4098
|
+
* Describes the settings that can be provided to the RowAction constructor.
|
|
4099
|
+
*/
|
|
4047
4100
|
export interface $RowActionSettings extends $ControlSettings {
|
|
4048
4101
|
/**
|
|
4049
4102
|
* Whether the control should be visible on the screen. If set to `false`, the control is hidden.
|
|
@@ -4338,7 +4391,9 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4338
4391
|
bVisible?: boolean
|
|
4339
4392
|
): this;
|
|
4340
4393
|
}
|
|
4341
|
-
|
|
4394
|
+
/**
|
|
4395
|
+
* Describes the settings that can be provided to the RowActionItem constructor.
|
|
4396
|
+
*/
|
|
4342
4397
|
export interface $RowActionItemSettings extends $ElementSettings {
|
|
4343
4398
|
/**
|
|
4344
4399
|
* The icon of the item.
|
|
@@ -4370,6 +4425,9 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4370
4425
|
press?: (oEvent: RowActionItem$PressEvent) => void;
|
|
4371
4426
|
}
|
|
4372
4427
|
|
|
4428
|
+
/**
|
|
4429
|
+
* Parameters of the RowActionItem#press event.
|
|
4430
|
+
*/
|
|
4373
4431
|
export interface RowActionItem$PressEventParameters {
|
|
4374
4432
|
/**
|
|
4375
4433
|
* The item which was pressed.
|
|
@@ -4382,6 +4440,9 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4382
4440
|
row?: Row;
|
|
4383
4441
|
}
|
|
4384
4442
|
|
|
4443
|
+
/**
|
|
4444
|
+
* Event object of the RowActionItem#press event.
|
|
4445
|
+
*/
|
|
4385
4446
|
export type RowActionItem$PressEvent = Event<
|
|
4386
4447
|
RowActionItem$PressEventParameters,
|
|
4387
4448
|
RowActionItem
|
|
@@ -4628,7 +4689,9 @@ declare module "sap/ui/table/rowmodes/Auto" {
|
|
|
4628
4689
|
iRowContentHeight?: int
|
|
4629
4690
|
): this;
|
|
4630
4691
|
}
|
|
4631
|
-
|
|
4692
|
+
/**
|
|
4693
|
+
* Describes the settings that can be provided to the Auto constructor.
|
|
4694
|
+
*/
|
|
4632
4695
|
export interface $AutoSettings extends $RowModeSettings {
|
|
4633
4696
|
/**
|
|
4634
4697
|
* The minimum number of displayed rows.
|
|
@@ -4869,7 +4932,9 @@ declare module "sap/ui/table/rowmodes/Fixed" {
|
|
|
4869
4932
|
iRowCount?: int
|
|
4870
4933
|
): this;
|
|
4871
4934
|
}
|
|
4872
|
-
|
|
4935
|
+
/**
|
|
4936
|
+
* Describes the settings that can be provided to the Fixed constructor.
|
|
4937
|
+
*/
|
|
4873
4938
|
export interface $FixedSettings extends $RowModeSettings {
|
|
4874
4939
|
/**
|
|
4875
4940
|
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
@@ -5118,7 +5183,9 @@ declare module "sap/ui/table/rowmodes/Interactive" {
|
|
|
5118
5183
|
iRowCount?: int
|
|
5119
5184
|
): this;
|
|
5120
5185
|
}
|
|
5121
|
-
|
|
5186
|
+
/**
|
|
5187
|
+
* Describes the settings that can be provided to the Interactive constructor.
|
|
5188
|
+
*/
|
|
5122
5189
|
export interface $InteractiveSettings extends $RowModeSettings {
|
|
5123
5190
|
/**
|
|
5124
5191
|
* The number of rows displayed in the table. The number of rows in the scrollable area is reduced by the
|
|
@@ -5233,7 +5300,9 @@ declare module "sap/ui/table/rowmodes/RowMode" {
|
|
|
5233
5300
|
*/
|
|
5234
5301
|
static getMetadata(): ElementMetadata;
|
|
5235
5302
|
}
|
|
5236
|
-
|
|
5303
|
+
/**
|
|
5304
|
+
* Describes the settings that can be provided to the RowMode constructor.
|
|
5305
|
+
*/
|
|
5237
5306
|
export interface $RowModeSettings extends $ElementSettings {}
|
|
5238
5307
|
}
|
|
5239
5308
|
|
|
@@ -5458,7 +5527,9 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
5458
5527
|
bNavigated?: boolean
|
|
5459
5528
|
): this;
|
|
5460
5529
|
}
|
|
5461
|
-
|
|
5530
|
+
/**
|
|
5531
|
+
* Describes the settings that can be provided to the RowSettings constructor.
|
|
5532
|
+
*/
|
|
5462
5533
|
export interface $RowSettingsSettings extends $ElementSettings {
|
|
5463
5534
|
/**
|
|
5464
5535
|
* The highlight state of the rows.
|
|
@@ -6070,7 +6141,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6070
6141
|
*
|
|
6071
6142
|
* fired when a column of the table has been selected
|
|
6072
6143
|
*
|
|
6073
|
-
* @deprecated (since 1.117)
|
|
6144
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
6074
6145
|
*
|
|
6075
6146
|
* @returns Reference to `this` in order to allow method chaining
|
|
6076
6147
|
*/
|
|
@@ -6097,7 +6168,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6097
6168
|
*
|
|
6098
6169
|
* fired when a column of the table has been selected
|
|
6099
6170
|
*
|
|
6100
|
-
* @deprecated (since 1.117)
|
|
6171
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
6101
6172
|
*
|
|
6102
6173
|
* @returns Reference to `this` in order to allow method chaining
|
|
6103
6174
|
*/
|
|
@@ -6120,7 +6191,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6120
6191
|
*
|
|
6121
6192
|
* fired when the visibility of a table column is changed.
|
|
6122
6193
|
*
|
|
6123
|
-
* @deprecated (since 1.117)
|
|
6194
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
6124
6195
|
*
|
|
6125
6196
|
* @returns Reference to `this` in order to allow method chaining
|
|
6126
6197
|
*/
|
|
@@ -6148,7 +6219,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6148
6219
|
*
|
|
6149
6220
|
* fired when the visibility of a table column is changed.
|
|
6150
6221
|
*
|
|
6151
|
-
* @deprecated (since 1.117)
|
|
6222
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
6152
6223
|
*
|
|
6153
6224
|
* @returns Reference to `this` in order to allow method chaining
|
|
6154
6225
|
*/
|
|
@@ -6327,7 +6398,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6327
6398
|
*
|
|
6328
6399
|
* fired when the table is grouped (experimental!).
|
|
6329
6400
|
*
|
|
6330
|
-
* @deprecated (since 1.118)
|
|
6401
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property for details.
|
|
6331
6402
|
*
|
|
6332
6403
|
* @returns Reference to `this` in order to allow method chaining
|
|
6333
6404
|
*/
|
|
@@ -6354,7 +6425,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6354
6425
|
*
|
|
6355
6426
|
* fired when the table is grouped (experimental!).
|
|
6356
6427
|
*
|
|
6357
|
-
* @deprecated (since 1.118)
|
|
6428
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property for details.
|
|
6358
6429
|
*
|
|
6359
6430
|
* @returns Reference to `this` in order to allow method chaining
|
|
6360
6431
|
*/
|
|
@@ -6874,7 +6945,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6874
6945
|
*
|
|
6875
6946
|
* The passed function and listener object must match the ones used for event registration.
|
|
6876
6947
|
*
|
|
6877
|
-
* @deprecated (since 1.117)
|
|
6948
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
6878
6949
|
*
|
|
6879
6950
|
* @returns Reference to `this` in order to allow method chaining
|
|
6880
6951
|
*/
|
|
@@ -6894,7 +6965,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6894
6965
|
*
|
|
6895
6966
|
* The passed function and listener object must match the ones used for event registration.
|
|
6896
6967
|
*
|
|
6897
|
-
* @deprecated (since 1.117)
|
|
6968
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
6898
6969
|
*
|
|
6899
6970
|
* @returns Reference to `this` in order to allow method chaining
|
|
6900
6971
|
*/
|
|
@@ -6970,7 +7041,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6970
7041
|
*
|
|
6971
7042
|
* The passed function and listener object must match the ones used for event registration.
|
|
6972
7043
|
*
|
|
6973
|
-
* @deprecated (since 1.118)
|
|
7044
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property for details.
|
|
6974
7045
|
*
|
|
6975
7046
|
* @returns Reference to `this` in order to allow method chaining
|
|
6976
7047
|
*/
|
|
@@ -7213,7 +7284,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7213
7284
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
7214
7285
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
7215
7286
|
*
|
|
7216
|
-
* @deprecated (since 1.117)
|
|
7287
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
7217
7288
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7218
7289
|
*
|
|
7219
7290
|
* @returns Whether or not to prevent the default action
|
|
@@ -7230,7 +7301,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7230
7301
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
7231
7302
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
7232
7303
|
*
|
|
7233
|
-
* @deprecated (since 1.117)
|
|
7304
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
7234
7305
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7235
7306
|
*
|
|
7236
7307
|
* @returns Whether or not to prevent the default action
|
|
@@ -7291,7 +7362,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7291
7362
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
7292
7363
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
7293
7364
|
*
|
|
7294
|
-
* @deprecated (since 1.118)
|
|
7365
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property for details.
|
|
7295
7366
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
7296
7367
|
*
|
|
7297
7368
|
* @returns Whether or not to prevent the default action
|
|
@@ -7507,7 +7578,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7507
7578
|
*
|
|
7508
7579
|
* Default value is `true`.
|
|
7509
7580
|
*
|
|
7510
|
-
* @deprecated (since 1.115)
|
|
7581
|
+
* @deprecated (since 1.115) - the concept has been discarded.
|
|
7511
7582
|
*
|
|
7512
7583
|
* @returns Value of property `editable`
|
|
7513
7584
|
*/
|
|
@@ -7597,7 +7668,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7597
7668
|
*
|
|
7598
7669
|
* Default value is `false`.
|
|
7599
7670
|
*
|
|
7600
|
-
* @deprecated (since 1.110) -
|
|
7671
|
+
* @deprecated (since 1.110) - the concept has been discarded.
|
|
7601
7672
|
*
|
|
7602
7673
|
* @returns Value of property `enableGrouping`
|
|
7603
7674
|
*/
|
|
@@ -7688,7 +7759,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7688
7759
|
/**
|
|
7689
7760
|
* ID of the element which is the current target of the association {@link #getGroupBy groupBy}, or `null`.
|
|
7690
7761
|
*
|
|
7691
|
-
* @deprecated (since 1.110)
|
|
7762
|
+
* @deprecated (since 1.110) - see the `enableGrouping` property for details.
|
|
7692
7763
|
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
7693
7764
|
*/
|
|
7694
7765
|
getGroupBy(): ID | null;
|
|
@@ -7713,7 +7784,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7713
7784
|
*
|
|
7714
7785
|
* Default value is `"Scrollbar"`.
|
|
7715
7786
|
*
|
|
7716
|
-
* @deprecated (since 1.38)
|
|
7787
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
7717
7788
|
*
|
|
7718
7789
|
* @returns Value of property `navigationMode`
|
|
7719
7790
|
*/
|
|
@@ -8373,7 +8444,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8373
8444
|
*
|
|
8374
8445
|
* Default value is `true`.
|
|
8375
8446
|
*
|
|
8376
|
-
* @deprecated (since 1.115)
|
|
8447
|
+
* @deprecated (since 1.115) - the concept has been discarded.
|
|
8377
8448
|
*
|
|
8378
8449
|
* @returns Reference to `this` in order to allow method chaining
|
|
8379
8450
|
*/
|
|
@@ -8505,7 +8576,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8505
8576
|
*
|
|
8506
8577
|
* Default value is `false`.
|
|
8507
8578
|
*
|
|
8508
|
-
* @deprecated (since 1.110) -
|
|
8579
|
+
* @deprecated (since 1.110) - the concept has been discarded.
|
|
8509
8580
|
*
|
|
8510
8581
|
* @returns Reference to `this` in order to allow method chaining
|
|
8511
8582
|
*/
|
|
@@ -8633,7 +8704,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8633
8704
|
/**
|
|
8634
8705
|
* Sets the associated {@link #getGroupBy groupBy}.
|
|
8635
8706
|
*
|
|
8636
|
-
* @deprecated (since 1.110)
|
|
8707
|
+
* @deprecated (since 1.110) - see the `enableGrouping` property for details.
|
|
8637
8708
|
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
8638
8709
|
*
|
|
8639
8710
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -8675,7 +8746,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8675
8746
|
*
|
|
8676
8747
|
* Default value is `"Scrollbar"`.
|
|
8677
8748
|
*
|
|
8678
|
-
* @deprecated (since 1.38)
|
|
8749
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
8679
8750
|
*
|
|
8680
8751
|
* @returns Reference to `this` in order to allow method chaining
|
|
8681
8752
|
*/
|
|
@@ -9077,7 +9148,9 @@ declare module "sap/ui/table/Table" {
|
|
|
9077
9148
|
*/
|
|
9078
9149
|
unbindRows(): this;
|
|
9079
9150
|
}
|
|
9080
|
-
|
|
9151
|
+
/**
|
|
9152
|
+
* Describes the settings that can be provided to the Table constructor.
|
|
9153
|
+
*/
|
|
9081
9154
|
export interface $TableSettings extends $ControlSettings {
|
|
9082
9155
|
/**
|
|
9083
9156
|
* Width of the Table.
|
|
@@ -9175,7 +9248,7 @@ declare module "sap/ui/table/Table" {
|
|
|
9175
9248
|
* Flag whether the controls of the Table are editable or not (currently this only controls the background
|
|
9176
9249
|
* color in certain themes!)
|
|
9177
9250
|
*
|
|
9178
|
-
* @deprecated (since 1.115)
|
|
9251
|
+
* @deprecated (since 1.115) - the concept has been discarded.
|
|
9179
9252
|
*/
|
|
9180
9253
|
editable?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
9181
9254
|
|
|
@@ -9183,7 +9256,7 @@ declare module "sap/ui/table/Table" {
|
|
|
9183
9256
|
* This property has been deprecated and must not be used anymore, since `Scrollbar` is the only supported
|
|
9184
9257
|
* option.
|
|
9185
9258
|
*
|
|
9186
|
-
* @deprecated (since 1.38)
|
|
9259
|
+
* @deprecated (since 1.38) - the concept has been discarded.
|
|
9187
9260
|
*/
|
|
9188
9261
|
navigationMode?:
|
|
9189
9262
|
| (NavigationMode | keyof typeof NavigationMode)
|
|
@@ -9221,7 +9294,7 @@ declare module "sap/ui/table/Table" {
|
|
|
9221
9294
|
* - The column, by which the table is grouped, is not visible. It will become visible again only if the
|
|
9222
9295
|
* table is grouped by another column or grouping is disabled.
|
|
9223
9296
|
*
|
|
9224
|
-
* @deprecated (since 1.110) -
|
|
9297
|
+
* @deprecated (since 1.110) - the concept has been discarded.
|
|
9225
9298
|
*/
|
|
9226
9299
|
enableGrouping?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
9227
9300
|
|
|
@@ -9488,7 +9561,7 @@ declare module "sap/ui/table/Table" {
|
|
|
9488
9561
|
* to `true`. Setting `groupBy` in the view does not work and throws an error. It can only be set if the
|
|
9489
9562
|
* column by which the table is grouped is already part of the `columns` aggregation of the table.
|
|
9490
9563
|
*
|
|
9491
|
-
* @deprecated (since 1.110)
|
|
9564
|
+
* @deprecated (since 1.110) - see the `enableGrouping` property for details.
|
|
9492
9565
|
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
9493
9566
|
*/
|
|
9494
9567
|
groupBy?: Column | string;
|
|
@@ -9514,7 +9587,7 @@ declare module "sap/ui/table/Table" {
|
|
|
9514
9587
|
/**
|
|
9515
9588
|
* fired when a column of the table has been selected
|
|
9516
9589
|
*
|
|
9517
|
-
* @deprecated (since 1.117)
|
|
9590
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
9518
9591
|
*/
|
|
9519
9592
|
columnSelect?: (oEvent: Table$ColumnSelectEvent) => void;
|
|
9520
9593
|
|
|
@@ -9547,14 +9620,14 @@ declare module "sap/ui/table/Table" {
|
|
|
9547
9620
|
/**
|
|
9548
9621
|
* fired when the table is grouped (experimental!).
|
|
9549
9622
|
*
|
|
9550
|
-
* @deprecated (since 1.118)
|
|
9623
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property for details.
|
|
9551
9624
|
*/
|
|
9552
9625
|
group?: (oEvent: Table$GroupEvent) => void;
|
|
9553
9626
|
|
|
9554
9627
|
/**
|
|
9555
9628
|
* fired when the visibility of a table column is changed.
|
|
9556
9629
|
*
|
|
9557
|
-
* @deprecated (since 1.117)
|
|
9630
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
9558
9631
|
*/
|
|
9559
9632
|
columnVisibility?: (oEvent: Table$ColumnVisibilityEvent) => void;
|
|
9560
9633
|
|
|
@@ -9632,6 +9705,9 @@ declare module "sap/ui/table/Table" {
|
|
|
9632
9705
|
rowsUpdated?: (oEvent: Event) => void;
|
|
9633
9706
|
}
|
|
9634
9707
|
|
|
9708
|
+
/**
|
|
9709
|
+
* Parameters of the Table#beforeOpenContextMenu event.
|
|
9710
|
+
*/
|
|
9635
9711
|
export interface Table$BeforeOpenContextMenuEventParameters {
|
|
9636
9712
|
/**
|
|
9637
9713
|
* Row index where the context menu opens.
|
|
@@ -9649,11 +9725,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9649
9725
|
contextMenu?: IContextMenu;
|
|
9650
9726
|
}
|
|
9651
9727
|
|
|
9728
|
+
/**
|
|
9729
|
+
* Event object of the Table#beforeOpenContextMenu event.
|
|
9730
|
+
*/
|
|
9652
9731
|
export type Table$BeforeOpenContextMenuEvent = Event<
|
|
9653
9732
|
Table$BeforeOpenContextMenuEventParameters,
|
|
9654
9733
|
Table
|
|
9655
9734
|
>;
|
|
9656
9735
|
|
|
9736
|
+
/**
|
|
9737
|
+
* Parameters of the Table#busyStateChanged event.
|
|
9738
|
+
*/
|
|
9657
9739
|
export interface Table$BusyStateChangedEventParameters {
|
|
9658
9740
|
/**
|
|
9659
9741
|
* busy state
|
|
@@ -9661,11 +9743,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9661
9743
|
busy?: boolean;
|
|
9662
9744
|
}
|
|
9663
9745
|
|
|
9746
|
+
/**
|
|
9747
|
+
* Event object of the Table#busyStateChanged event.
|
|
9748
|
+
*/
|
|
9664
9749
|
export type Table$BusyStateChangedEvent = Event<
|
|
9665
9750
|
Table$BusyStateChangedEventParameters,
|
|
9666
9751
|
Table
|
|
9667
9752
|
>;
|
|
9668
9753
|
|
|
9754
|
+
/**
|
|
9755
|
+
* Parameters of the Table#cellClick event.
|
|
9756
|
+
*/
|
|
9669
9757
|
export interface Table$CellClickEventParameters {
|
|
9670
9758
|
/**
|
|
9671
9759
|
* The control of the cell.
|
|
@@ -9699,11 +9787,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9699
9787
|
rowBindingContext?: Context;
|
|
9700
9788
|
}
|
|
9701
9789
|
|
|
9790
|
+
/**
|
|
9791
|
+
* Event object of the Table#cellClick event.
|
|
9792
|
+
*/
|
|
9702
9793
|
export type Table$CellClickEvent = Event<
|
|
9703
9794
|
Table$CellClickEventParameters,
|
|
9704
9795
|
Table
|
|
9705
9796
|
>;
|
|
9706
9797
|
|
|
9798
|
+
/**
|
|
9799
|
+
* Parameters of the Table#cellContextmenu event.
|
|
9800
|
+
*
|
|
9801
|
+
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
9802
|
+
*/
|
|
9707
9803
|
export interface Table$CellContextmenuEventParameters {
|
|
9708
9804
|
/**
|
|
9709
9805
|
* The control of the cell.
|
|
@@ -9737,11 +9833,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9737
9833
|
rowBindingContext?: Context;
|
|
9738
9834
|
}
|
|
9739
9835
|
|
|
9836
|
+
/**
|
|
9837
|
+
* Event object of the Table#cellContextmenu event.
|
|
9838
|
+
*
|
|
9839
|
+
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
9840
|
+
*/
|
|
9740
9841
|
export type Table$CellContextmenuEvent = Event<
|
|
9741
9842
|
Table$CellContextmenuEventParameters,
|
|
9742
9843
|
Table
|
|
9743
9844
|
>;
|
|
9744
9845
|
|
|
9846
|
+
/**
|
|
9847
|
+
* Parameters of the Table#columnFreeze event.
|
|
9848
|
+
*/
|
|
9745
9849
|
export interface Table$ColumnFreezeEventParameters {
|
|
9746
9850
|
/**
|
|
9747
9851
|
* reference to the column to freeze
|
|
@@ -9749,11 +9853,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9749
9853
|
column?: Column;
|
|
9750
9854
|
}
|
|
9751
9855
|
|
|
9856
|
+
/**
|
|
9857
|
+
* Event object of the Table#columnFreeze event.
|
|
9858
|
+
*/
|
|
9752
9859
|
export type Table$ColumnFreezeEvent = Event<
|
|
9753
9860
|
Table$ColumnFreezeEventParameters,
|
|
9754
9861
|
Table
|
|
9755
9862
|
>;
|
|
9756
9863
|
|
|
9864
|
+
/**
|
|
9865
|
+
* Parameters of the Table#columnMove event.
|
|
9866
|
+
*/
|
|
9757
9867
|
export interface Table$ColumnMoveEventParameters {
|
|
9758
9868
|
/**
|
|
9759
9869
|
* moved column.
|
|
@@ -9766,11 +9876,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9766
9876
|
newPos?: int;
|
|
9767
9877
|
}
|
|
9768
9878
|
|
|
9879
|
+
/**
|
|
9880
|
+
* Event object of the Table#columnMove event.
|
|
9881
|
+
*/
|
|
9769
9882
|
export type Table$ColumnMoveEvent = Event<
|
|
9770
9883
|
Table$ColumnMoveEventParameters,
|
|
9771
9884
|
Table
|
|
9772
9885
|
>;
|
|
9773
9886
|
|
|
9887
|
+
/**
|
|
9888
|
+
* Parameters of the Table#columnResize event.
|
|
9889
|
+
*/
|
|
9774
9890
|
export interface Table$ColumnResizeEventParameters {
|
|
9775
9891
|
/**
|
|
9776
9892
|
* resized column.
|
|
@@ -9783,11 +9899,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9783
9899
|
width?: CSSSize;
|
|
9784
9900
|
}
|
|
9785
9901
|
|
|
9902
|
+
/**
|
|
9903
|
+
* Event object of the Table#columnResize event.
|
|
9904
|
+
*/
|
|
9786
9905
|
export type Table$ColumnResizeEvent = Event<
|
|
9787
9906
|
Table$ColumnResizeEventParameters,
|
|
9788
9907
|
Table
|
|
9789
9908
|
>;
|
|
9790
9909
|
|
|
9910
|
+
/**
|
|
9911
|
+
* Parameters of the Table#columnSelect event.
|
|
9912
|
+
*
|
|
9913
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
9914
|
+
*/
|
|
9791
9915
|
export interface Table$ColumnSelectEventParameters {
|
|
9792
9916
|
/**
|
|
9793
9917
|
* reference to the selected column
|
|
@@ -9795,11 +9919,21 @@ declare module "sap/ui/table/Table" {
|
|
|
9795
9919
|
column?: Column;
|
|
9796
9920
|
}
|
|
9797
9921
|
|
|
9922
|
+
/**
|
|
9923
|
+
* Event object of the Table#columnSelect event.
|
|
9924
|
+
*
|
|
9925
|
+
* @deprecated (since 1.117) - see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
9926
|
+
*/
|
|
9798
9927
|
export type Table$ColumnSelectEvent = Event<
|
|
9799
9928
|
Table$ColumnSelectEventParameters,
|
|
9800
9929
|
Table
|
|
9801
9930
|
>;
|
|
9802
9931
|
|
|
9932
|
+
/**
|
|
9933
|
+
* Parameters of the Table#columnVisibility event.
|
|
9934
|
+
*
|
|
9935
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
9936
|
+
*/
|
|
9803
9937
|
export interface Table$ColumnVisibilityEventParameters {
|
|
9804
9938
|
/**
|
|
9805
9939
|
* affected column.
|
|
@@ -9812,11 +9946,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9812
9946
|
newVisible?: boolean;
|
|
9813
9947
|
}
|
|
9814
9948
|
|
|
9949
|
+
/**
|
|
9950
|
+
* Event object of the Table#columnVisibility event.
|
|
9951
|
+
*
|
|
9952
|
+
* @deprecated (since 1.117) - see the `showColumnVisibilityMenu` property of `sap.ui.table.Table` for details.
|
|
9953
|
+
*/
|
|
9815
9954
|
export type Table$ColumnVisibilityEvent = Event<
|
|
9816
9955
|
Table$ColumnVisibilityEventParameters,
|
|
9817
9956
|
Table
|
|
9818
9957
|
>;
|
|
9819
9958
|
|
|
9959
|
+
/**
|
|
9960
|
+
* Parameters of the Table#customFilter event.
|
|
9961
|
+
*/
|
|
9820
9962
|
export interface Table$CustomFilterEventParameters {
|
|
9821
9963
|
/**
|
|
9822
9964
|
* The column instance on which the custom filter button was pressed.
|
|
@@ -9829,11 +9971,17 @@ declare module "sap/ui/table/Table" {
|
|
|
9829
9971
|
value?: string;
|
|
9830
9972
|
}
|
|
9831
9973
|
|
|
9974
|
+
/**
|
|
9975
|
+
* Event object of the Table#customFilter event.
|
|
9976
|
+
*/
|
|
9832
9977
|
export type Table$CustomFilterEvent = Event<
|
|
9833
9978
|
Table$CustomFilterEventParameters,
|
|
9834
9979
|
Table
|
|
9835
9980
|
>;
|
|
9836
9981
|
|
|
9982
|
+
/**
|
|
9983
|
+
* Parameters of the Table#filter event.
|
|
9984
|
+
*/
|
|
9837
9985
|
export interface Table$FilterEventParameters {
|
|
9838
9986
|
/**
|
|
9839
9987
|
* filtered column.
|
|
@@ -9846,8 +9994,14 @@ declare module "sap/ui/table/Table" {
|
|
|
9846
9994
|
value?: string;
|
|
9847
9995
|
}
|
|
9848
9996
|
|
|
9997
|
+
/**
|
|
9998
|
+
* Event object of the Table#filter event.
|
|
9999
|
+
*/
|
|
9849
10000
|
export type Table$FilterEvent = Event<Table$FilterEventParameters, Table>;
|
|
9850
10001
|
|
|
10002
|
+
/**
|
|
10003
|
+
* Parameters of the Table#firstVisibleRowChanged event.
|
|
10004
|
+
*/
|
|
9851
10005
|
export interface Table$FirstVisibleRowChangedEventParameters {
|
|
9852
10006
|
/**
|
|
9853
10007
|
* First visible row
|
|
@@ -9855,11 +10009,19 @@ declare module "sap/ui/table/Table" {
|
|
|
9855
10009
|
firstVisibleRow?: int;
|
|
9856
10010
|
}
|
|
9857
10011
|
|
|
10012
|
+
/**
|
|
10013
|
+
* Event object of the Table#firstVisibleRowChanged event.
|
|
10014
|
+
*/
|
|
9858
10015
|
export type Table$FirstVisibleRowChangedEvent = Event<
|
|
9859
10016
|
Table$FirstVisibleRowChangedEventParameters,
|
|
9860
10017
|
Table
|
|
9861
10018
|
>;
|
|
9862
10019
|
|
|
10020
|
+
/**
|
|
10021
|
+
* Parameters of the Table#group event.
|
|
10022
|
+
*
|
|
10023
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property for details.
|
|
10024
|
+
*/
|
|
9863
10025
|
export interface Table$GroupEventParameters {
|
|
9864
10026
|
/**
|
|
9865
10027
|
* grouped column.
|
|
@@ -9867,8 +10029,16 @@ declare module "sap/ui/table/Table" {
|
|
|
9867
10029
|
column?: Column;
|
|
9868
10030
|
}
|
|
9869
10031
|
|
|
10032
|
+
/**
|
|
10033
|
+
* Event object of the Table#group event.
|
|
10034
|
+
*
|
|
10035
|
+
* @deprecated (since 1.118) - see the `enableGrouping` property for details.
|
|
10036
|
+
*/
|
|
9870
10037
|
export type Table$GroupEvent = Event<Table$GroupEventParameters, Table>;
|
|
9871
10038
|
|
|
10039
|
+
/**
|
|
10040
|
+
* Parameters of the Table#paste event.
|
|
10041
|
+
*/
|
|
9872
10042
|
export interface Table$PasteEventParameters {
|
|
9873
10043
|
/**
|
|
9874
10044
|
* 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
|
|
@@ -9877,8 +10047,14 @@ declare module "sap/ui/table/Table" {
|
|
|
9877
10047
|
data?: string[][];
|
|
9878
10048
|
}
|
|
9879
10049
|
|
|
10050
|
+
/**
|
|
10051
|
+
* Event object of the Table#paste event.
|
|
10052
|
+
*/
|
|
9880
10053
|
export type Table$PasteEvent = Event<Table$PasteEventParameters, Table>;
|
|
9881
10054
|
|
|
10055
|
+
/**
|
|
10056
|
+
* Parameters of the Table#rowSelectionChange event.
|
|
10057
|
+
*/
|
|
9882
10058
|
export interface Table$RowSelectionChangeEventParameters {
|
|
9883
10059
|
/**
|
|
9884
10060
|
* row index which has been clicked so that the selection has been changed (either selected or deselected)
|
|
@@ -9907,18 +10083,30 @@ declare module "sap/ui/table/Table" {
|
|
|
9907
10083
|
userInteraction?: boolean;
|
|
9908
10084
|
}
|
|
9909
10085
|
|
|
10086
|
+
/**
|
|
10087
|
+
* Event object of the Table#rowSelectionChange event.
|
|
10088
|
+
*/
|
|
9910
10089
|
export type Table$RowSelectionChangeEvent = Event<
|
|
9911
10090
|
Table$RowSelectionChangeEventParameters,
|
|
9912
10091
|
Table
|
|
9913
10092
|
>;
|
|
9914
10093
|
|
|
10094
|
+
/**
|
|
10095
|
+
* Parameters of the Table#rowsUpdated event.
|
|
10096
|
+
*/
|
|
9915
10097
|
export interface Table$RowsUpdatedEventParameters {}
|
|
9916
10098
|
|
|
10099
|
+
/**
|
|
10100
|
+
* Event object of the Table#rowsUpdated event.
|
|
10101
|
+
*/
|
|
9917
10102
|
export type Table$RowsUpdatedEvent = Event<
|
|
9918
10103
|
Table$RowsUpdatedEventParameters,
|
|
9919
10104
|
Table
|
|
9920
10105
|
>;
|
|
9921
10106
|
|
|
10107
|
+
/**
|
|
10108
|
+
* Parameters of the Table#sort event.
|
|
10109
|
+
*/
|
|
9922
10110
|
export interface Table$SortEventParameters {
|
|
9923
10111
|
/**
|
|
9924
10112
|
* The column for which the sorting is changed
|
|
@@ -9936,6 +10124,9 @@ declare module "sap/ui/table/Table" {
|
|
|
9936
10124
|
columnAdded?: boolean;
|
|
9937
10125
|
}
|
|
9938
10126
|
|
|
10127
|
+
/**
|
|
10128
|
+
* Event object of the Table#sort event.
|
|
10129
|
+
*/
|
|
9939
10130
|
export type Table$SortEvent = Event<Table$SortEventParameters, Table>;
|
|
9940
10131
|
}
|
|
9941
10132
|
|
|
@@ -10231,7 +10422,11 @@ declare module "sap/ui/table/TablePersoController" {
|
|
|
10231
10422
|
oTable: ID | Table
|
|
10232
10423
|
): this;
|
|
10233
10424
|
}
|
|
10234
|
-
|
|
10425
|
+
/**
|
|
10426
|
+
* Describes the settings that can be provided to the TablePersoController constructor.
|
|
10427
|
+
*
|
|
10428
|
+
* @deprecated (since 1.115) - Please use the {@link sap.m.p13n.Engine Engine} for personalization instead.
|
|
10429
|
+
*/
|
|
10235
10430
|
export interface $TablePersoControllerSettings
|
|
10236
10431
|
extends $ManagedObjectSettings {
|
|
10237
10432
|
/**
|
|
@@ -10546,9 +10741,9 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10546
10741
|
*/
|
|
10547
10742
|
getCollapseRecursive(): boolean;
|
|
10548
10743
|
/**
|
|
10549
|
-
* The
|
|
10744
|
+
* The `enableGrouping` property is not supported by the `TreeTable` control.
|
|
10550
10745
|
*
|
|
10551
|
-
* @deprecated (since 1.28)
|
|
10746
|
+
* @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `TreeTable` control.
|
|
10552
10747
|
*/
|
|
10553
10748
|
getEnableGrouping(): boolean;
|
|
10554
10749
|
/**
|
|
@@ -10583,7 +10778,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10583
10778
|
/**
|
|
10584
10779
|
* The `groupBy` association is not supported by the `TreeTable` control.
|
|
10585
10780
|
*
|
|
10586
|
-
* @deprecated (since 1.28)
|
|
10781
|
+
* @deprecated (since 1.28) - the `groupBy` association is not supported by the `TreeTable` control.
|
|
10587
10782
|
*/
|
|
10588
10783
|
getGroupBy(): ID;
|
|
10589
10784
|
/**
|
|
@@ -10723,11 +10918,12 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10723
10918
|
bCollapseRecursive?: boolean
|
|
10724
10919
|
): this;
|
|
10725
10920
|
/**
|
|
10726
|
-
* The
|
|
10921
|
+
* The `enableGrouping` property is not supported by the `TreeTable` control.
|
|
10727
10922
|
* See:
|
|
10728
10923
|
* sap.ui.table.TreeTable#setUseGroupMode
|
|
10729
10924
|
*
|
|
10730
|
-
* @deprecated (since 1.28) -
|
|
10925
|
+
* @deprecated (since 1.28) - the `enableGrouping` property is not supported by the `TreeTable` control.
|
|
10926
|
+
* To get a group-like visualization the `useGroupMode` property can be used.
|
|
10731
10927
|
*
|
|
10732
10928
|
* @returns Reference to `this` in order to allow method chaining
|
|
10733
10929
|
*/
|
|
@@ -10787,7 +10983,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10787
10983
|
/**
|
|
10788
10984
|
* The `groupBy` association is not supported by the `TreeTable` control.
|
|
10789
10985
|
*
|
|
10790
|
-
* @deprecated (since 1.28)
|
|
10986
|
+
* @deprecated (since 1.28) - the `groupBy` association is not supported by the `TreeTable` control.
|
|
10791
10987
|
*
|
|
10792
10988
|
* @returns Reference to `this` in order to allow method chaining
|
|
10793
10989
|
*/
|
|
@@ -10915,7 +11111,9 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
10915
11111
|
bUseGroupMode?: boolean
|
|
10916
11112
|
): this;
|
|
10917
11113
|
}
|
|
10918
|
-
|
|
11114
|
+
/**
|
|
11115
|
+
* Describes the settings that can be provided to the TreeTable constructor.
|
|
11116
|
+
*/
|
|
10919
11117
|
export interface $TreeTableSettings extends $TableSettings {
|
|
10920
11118
|
/**
|
|
10921
11119
|
* Specifies whether the first level is expanded.
|
|
@@ -11004,6 +11202,9 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
11004
11202
|
toggleOpenState?: (oEvent: TreeTable$ToggleOpenStateEvent) => void;
|
|
11005
11203
|
}
|
|
11006
11204
|
|
|
11205
|
+
/**
|
|
11206
|
+
* Parameters of the TreeTable#toggleOpenState event.
|
|
11207
|
+
*/
|
|
11007
11208
|
export interface TreeTable$ToggleOpenStateEventParameters {
|
|
11008
11209
|
/**
|
|
11009
11210
|
* Index of the expanded/collapsed row
|
|
@@ -11021,6 +11222,9 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
11021
11222
|
expanded?: boolean;
|
|
11022
11223
|
}
|
|
11023
11224
|
|
|
11225
|
+
/**
|
|
11226
|
+
* Event object of the TreeTable#toggleOpenState event.
|
|
11227
|
+
*/
|
|
11024
11228
|
export type TreeTable$ToggleOpenStateEvent = Event<
|
|
11025
11229
|
TreeTable$ToggleOpenStateEventParameters,
|
|
11026
11230
|
TreeTable
|