@openui5/ts-types 1.132.1 → 1.133.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 +127 -127
- package/types/sap.m.d.ts +1685 -729
- package/types/sap.tnt.d.ts +221 -8
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +267 -266
- package/types/sap.ui.core.d.ts +621 -588
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -3
- package/types/sap.ui.integration.d.ts +317 -230
- package/types/sap.ui.layout.d.ts +69 -69
- package/types/sap.ui.mdc.d.ts +142 -115
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +14 -14
- package/types/sap.ui.support.d.ts +2 -2
- package/types/sap.ui.table.d.ts +209 -185
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +89 -89
- package/types/sap.ui.ux3.d.ts +102 -102
- package/types/sap.ui.webc.common.d.ts +11 -11
- package/types/sap.ui.webc.fiori.d.ts +145 -145
- package/types/sap.ui.webc.main.d.ts +400 -400
- package/types/sap.uxap.d.ts +14 -14
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.133.1
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
namespace ui {
|
|
@@ -71,7 +71,7 @@ declare namespace sap {
|
|
|
71
71
|
/**
|
|
72
72
|
* Describes the settings that can be provided to the SelectionPlugin constructor.
|
|
73
73
|
*
|
|
74
|
-
* @experimental
|
|
74
|
+
* @experimental As of version 1.64.
|
|
75
75
|
*/
|
|
76
76
|
interface $SelectionPluginSettings
|
|
77
77
|
extends sap.ui.core.$ElementSettings {
|
|
@@ -553,7 +553,7 @@ declare namespace sap {
|
|
|
553
553
|
* Implements the selection methods for a table.
|
|
554
554
|
*
|
|
555
555
|
* @since 1.64
|
|
556
|
-
* @experimental
|
|
556
|
+
* @experimental As of version 1.64.
|
|
557
557
|
*/
|
|
558
558
|
abstract class SelectionPlugin extends sap.ui.core.Element {
|
|
559
559
|
/**
|
|
@@ -1723,8 +1723,8 @@ declare namespace sap {
|
|
|
1723
1723
|
/**
|
|
1724
1724
|
* Describes the settings that can be provided to the AnalyticalColumnMenu constructor.
|
|
1725
1725
|
*
|
|
1726
|
-
* @deprecated
|
|
1727
|
-
* @experimental
|
|
1726
|
+
* @deprecated As of version 1.117. replaced by the `headerMenu` association of `sap.ui.table.Column`.
|
|
1727
|
+
* @experimental As of version 1.21.
|
|
1728
1728
|
*/
|
|
1729
1729
|
interface $AnalyticalColumnMenuSettings
|
|
1730
1730
|
extends sap.ui.table.$ColumnMenuSettings {}
|
|
@@ -1753,7 +1753,7 @@ declare namespace sap {
|
|
|
1753
1753
|
* ```
|
|
1754
1754
|
*
|
|
1755
1755
|
*
|
|
1756
|
-
* @deprecated
|
|
1756
|
+
* @deprecated As of version 1.44. replaced by the `sumOnTop` binding parameter
|
|
1757
1757
|
*/
|
|
1758
1758
|
sumOnTop?:
|
|
1759
1759
|
| boolean
|
|
@@ -1779,7 +1779,7 @@ declare namespace sap {
|
|
|
1779
1779
|
* ```
|
|
1780
1780
|
*
|
|
1781
1781
|
*
|
|
1782
|
-
* @deprecated
|
|
1782
|
+
* @deprecated As of version 1.44. replaced by the `numberOfExpandedLevels` binding parameter
|
|
1783
1783
|
*/
|
|
1784
1784
|
numberOfExpandedLevels?:
|
|
1785
1785
|
| int
|
|
@@ -1806,7 +1806,7 @@ declare namespace sap {
|
|
|
1806
1806
|
* ```
|
|
1807
1807
|
*
|
|
1808
1808
|
*
|
|
1809
|
-
* @deprecated
|
|
1809
|
+
* @deprecated As of version 1.44. replaced by the `autoExpandMode` binding parameter
|
|
1810
1810
|
*/
|
|
1811
1811
|
autoExpandMode?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
1812
1812
|
|
|
@@ -1814,7 +1814,8 @@ declare namespace sap {
|
|
|
1814
1814
|
* Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
|
|
1815
1815
|
* return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
|
|
1816
1816
|
*
|
|
1817
|
-
* @deprecated
|
|
1817
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
1818
|
+
* for details.
|
|
1818
1819
|
*/
|
|
1819
1820
|
columnVisibilityMenuSorter?:
|
|
1820
1821
|
| any
|
|
@@ -1840,7 +1841,7 @@ declare namespace sap {
|
|
|
1840
1841
|
* ```
|
|
1841
1842
|
*
|
|
1842
1843
|
*
|
|
1843
|
-
* @deprecated
|
|
1844
|
+
* @deprecated As of version 1.76. replaced by the `collapseRecursive` binding parameter
|
|
1844
1845
|
*/
|
|
1845
1846
|
collapseRecursive?:
|
|
1846
1847
|
| boolean
|
|
@@ -1850,7 +1851,7 @@ declare namespace sap {
|
|
|
1850
1851
|
/**
|
|
1851
1852
|
* If dirty the content of the Table will be overlayed.
|
|
1852
1853
|
*
|
|
1853
|
-
* @deprecated
|
|
1854
|
+
* @deprecated As of version 1.21.2. replaced by {@link sap.ui.table.Table#setShowOverlay}
|
|
1854
1855
|
*/
|
|
1855
1856
|
dirty?:
|
|
1856
1857
|
| boolean
|
|
@@ -1900,8 +1901,8 @@ declare namespace sap {
|
|
|
1900
1901
|
* width. If all columns are set to not be flexible, an extra "dummy" column will be created at the end
|
|
1901
1902
|
* of the table.
|
|
1902
1903
|
*
|
|
1903
|
-
* @deprecated
|
|
1904
|
-
* the property `width="auto"` instead.
|
|
1904
|
+
* @deprecated As of version 1.44. this property has no effect. Use the property `minWidth` in combination
|
|
1905
|
+
* with the property `width="auto"` instead.
|
|
1905
1906
|
*/
|
|
1906
1907
|
flexible?:
|
|
1907
1908
|
| boolean
|
|
@@ -1937,7 +1938,7 @@ declare namespace sap {
|
|
|
1937
1938
|
* to show the sort indicator. With UI5 2.x, the `sorted` property will be removed and the sort indicator
|
|
1938
1939
|
* will be shown based on the `sortOrder`.
|
|
1939
1940
|
*
|
|
1940
|
-
* @deprecated
|
|
1941
|
+
* @deprecated As of version 1.120. replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
|
|
1941
1942
|
* property
|
|
1942
1943
|
*/
|
|
1943
1944
|
sorted?:
|
|
@@ -2041,7 +2042,7 @@ declare namespace sap {
|
|
|
2041
2042
|
/**
|
|
2042
2043
|
* Indicates if the column is grouped.
|
|
2043
2044
|
*
|
|
2044
|
-
* @deprecated
|
|
2045
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property of `sap.ui.table.Table` for details.
|
|
2045
2046
|
*/
|
|
2046
2047
|
grouped?:
|
|
2047
2048
|
| boolean
|
|
@@ -2165,7 +2166,7 @@ declare namespace sap {
|
|
|
2165
2166
|
* way or create own instances of `sap.ui.table.ColumnMenu`. To add a custom menu to a column, use the aggregation
|
|
2166
2167
|
* `menu` with a new instance of `sap.ui.unified.Menu`.
|
|
2167
2168
|
*
|
|
2168
|
-
* @deprecated
|
|
2169
|
+
* @deprecated As of version 1.117. use the `headerMenu` association instead.
|
|
2169
2170
|
*/
|
|
2170
2171
|
menu?: sap.ui.unified.Menu;
|
|
2171
2172
|
|
|
@@ -2180,7 +2181,7 @@ declare namespace sap {
|
|
|
2180
2181
|
* Fires before the column menu is opened.
|
|
2181
2182
|
*
|
|
2182
2183
|
* @since 1.33.0
|
|
2183
|
-
* @deprecated
|
|
2184
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation for details.
|
|
2184
2185
|
*/
|
|
2185
2186
|
columnMenuOpen?: (oEvent: Column$ColumnMenuOpenEvent) => void;
|
|
2186
2187
|
}
|
|
@@ -2188,7 +2189,7 @@ declare namespace sap {
|
|
|
2188
2189
|
/**
|
|
2189
2190
|
* Describes the settings that can be provided to the ColumnMenu constructor.
|
|
2190
2191
|
*
|
|
2191
|
-
* @deprecated
|
|
2192
|
+
* @deprecated As of version 1.117. use the {@link sap.m.table.columnmenu.Menu} instead.
|
|
2192
2193
|
*/
|
|
2193
2194
|
interface $ColumnMenuSettings extends sap.ui.unified.$MenuSettings {}
|
|
2194
2195
|
|
|
@@ -2277,15 +2278,16 @@ declare namespace sap {
|
|
|
2277
2278
|
/**
|
|
2278
2279
|
* The highlight state of the rows.
|
|
2279
2280
|
*
|
|
2280
|
-
* If the highlight is set to {@link sap
|
|
2281
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
2281
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
2282
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
2282
2283
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
2283
2284
|
* for accessibility contrast reasons).
|
|
2284
2285
|
*
|
|
2285
2286
|
* Accessibility support is provided through the associated {@link sap.ui.table.RowSettings#setHighlightText highlightText }
|
|
2286
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
2287
|
-
* property does not need to be set because a default text is used. However, the default
|
|
2288
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
2287
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
2288
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
2289
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
2290
|
+
* property must be set.
|
|
2289
2291
|
*
|
|
2290
2292
|
* @since 1.48.0
|
|
2291
2293
|
*/
|
|
@@ -2341,7 +2343,7 @@ declare namespace sap {
|
|
|
2341
2343
|
* If no value is set (includes 0), a default height is applied based on the content density configuration.
|
|
2342
2344
|
* In any `visibleRowCountMode`, the actual height can increase based on the content.
|
|
2343
2345
|
*
|
|
2344
|
-
* @deprecated
|
|
2346
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
2345
2347
|
*/
|
|
2346
2348
|
rowHeight?:
|
|
2347
2349
|
| int
|
|
@@ -2376,7 +2378,7 @@ declare namespace sap {
|
|
|
2376
2378
|
/**
|
|
2377
2379
|
* Number of visible rows of the table.
|
|
2378
2380
|
*
|
|
2379
|
-
* @deprecated
|
|
2381
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
2380
2382
|
*/
|
|
2381
2383
|
visibleRowCount?:
|
|
2382
2384
|
| int
|
|
@@ -2424,7 +2426,7 @@ declare namespace sap {
|
|
|
2424
2426
|
* invalid, the call is ignored. **Note:** If the rows of the table are bound, the value of the property
|
|
2425
2427
|
* is reset to -1. If a selection plugin is applied to the table, the property is not bindable.
|
|
2426
2428
|
*
|
|
2427
|
-
* @deprecated
|
|
2429
|
+
* @deprecated As of version 1.69. replaced by {@link sap.ui.table.Table#getSelectedIndices} and {@link sap.ui.table.Table#setSelectedIndex}
|
|
2428
2430
|
*/
|
|
2429
2431
|
selectedIndex?:
|
|
2430
2432
|
| int
|
|
@@ -2435,7 +2437,7 @@ declare namespace sap {
|
|
|
2435
2437
|
* Flag whether the controls of the Table are editable or not (currently this only controls the background
|
|
2436
2438
|
* color in certain themes!)
|
|
2437
2439
|
*
|
|
2438
|
-
* @deprecated
|
|
2440
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
2439
2441
|
*/
|
|
2440
2442
|
editable?:
|
|
2441
2443
|
| boolean
|
|
@@ -2446,7 +2448,7 @@ declare namespace sap {
|
|
|
2446
2448
|
* This property has been deprecated and must not be used anymore, since `Scrollbar` is the only supported
|
|
2447
2449
|
* option.
|
|
2448
2450
|
*
|
|
2449
|
-
* @deprecated
|
|
2451
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
2450
2452
|
*/
|
|
2451
2453
|
navigationMode?:
|
|
2452
2454
|
| sap.ui.table.NavigationMode
|
|
@@ -2519,7 +2521,7 @@ declare namespace sap {
|
|
|
2519
2521
|
* - The column, by which the table is grouped, is not visible. It will become visible again only if the
|
|
2520
2522
|
* table is grouped by another column or grouping is disabled.
|
|
2521
2523
|
*
|
|
2522
|
-
* @deprecated
|
|
2524
|
+
* @deprecated As of version 1.110. the concept has been discarded.
|
|
2523
2525
|
*/
|
|
2524
2526
|
enableGrouping?:
|
|
2525
2527
|
| boolean
|
|
@@ -2530,7 +2532,7 @@ declare namespace sap {
|
|
|
2530
2532
|
* Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
|
|
2531
2533
|
* header menu. It allows to show or hide columns
|
|
2532
2534
|
*
|
|
2533
|
-
* @deprecated
|
|
2535
|
+
* @deprecated As of version 1.117. use a `ColumnMenu` with a custom menu item in the `headerMenu` association
|
|
2534
2536
|
* instead.
|
|
2535
2537
|
*/
|
|
2536
2538
|
showColumnVisibilityMenu?:
|
|
@@ -2565,7 +2567,7 @@ declare namespace sap {
|
|
|
2565
2567
|
* after rendering. The user can change the `visibleRowCount` by dragging a resizer.
|
|
2566
2568
|
*
|
|
2567
2569
|
* @since 1.9.2
|
|
2568
|
-
* @deprecated
|
|
2570
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
2569
2571
|
*/
|
|
2570
2572
|
visibleRowCountMode?:
|
|
2571
2573
|
| sap.ui.table.VisibleRowCountMode
|
|
@@ -2576,7 +2578,7 @@ declare namespace sap {
|
|
|
2576
2578
|
* This property is used to set the minimum count of visible rows when the property visibleRowCountMode
|
|
2577
2579
|
* is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
|
|
2578
2580
|
*
|
|
2579
|
-
* @deprecated
|
|
2581
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
2580
2582
|
*/
|
|
2581
2583
|
minAutoRowCount?:
|
|
2582
2584
|
| int
|
|
@@ -2601,7 +2603,7 @@ declare namespace sap {
|
|
|
2601
2603
|
* Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
|
|
2602
2604
|
* fixed, will scroll.
|
|
2603
2605
|
*
|
|
2604
|
-
* @deprecated
|
|
2606
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
2605
2607
|
*/
|
|
2606
2608
|
fixedRowCount?:
|
|
2607
2609
|
| int
|
|
@@ -2613,7 +2615,7 @@ declare namespace sap {
|
|
|
2613
2615
|
* not fixed, will scroll.
|
|
2614
2616
|
*
|
|
2615
2617
|
* @since 1.18.7
|
|
2616
|
-
* @deprecated
|
|
2618
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
2617
2619
|
*/
|
|
2618
2620
|
fixedBottomRowCount?:
|
|
2619
2621
|
| int
|
|
@@ -2711,7 +2713,8 @@ declare namespace sap {
|
|
|
2711
2713
|
/**
|
|
2712
2714
|
* Control or text of title section of the Table (if not set it will be hidden)
|
|
2713
2715
|
*
|
|
2714
|
-
* @deprecated
|
|
2716
|
+
* @deprecated As of version 1.72. Use, for example, a `sap.m.Title` control in the `extension` aggregation
|
|
2717
|
+
* instead.
|
|
2715
2718
|
*/
|
|
2716
2719
|
title?:
|
|
2717
2720
|
| string
|
|
@@ -2732,7 +2735,7 @@ declare namespace sap {
|
|
|
2732
2735
|
* Toolbar of the Table If not set, no toolbar area will be rendered. Note: The CSS class sapMTBHeader-CTX
|
|
2733
2736
|
* is applied on the given toolbar.
|
|
2734
2737
|
*
|
|
2735
|
-
* @deprecated
|
|
2738
|
+
* @deprecated As of version 1.38. This aggregation is deprecated, use the `extension` aggregation instead.
|
|
2736
2739
|
*/
|
|
2737
2740
|
toolbar?: sap.ui.core.Toolbar;
|
|
2738
2741
|
|
|
@@ -2839,7 +2842,7 @@ declare namespace sap {
|
|
|
2839
2842
|
* plugin.
|
|
2840
2843
|
*
|
|
2841
2844
|
* @since 1.64
|
|
2842
|
-
* @deprecated
|
|
2845
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
2843
2846
|
*/
|
|
2844
2847
|
plugins?:
|
|
2845
2848
|
| sap.ui.table.plugins.SelectionPlugin[]
|
|
@@ -2852,8 +2855,8 @@ declare namespace sap {
|
|
|
2852
2855
|
* to `true`. Setting `groupBy` in the view does not work and throws an error. It can only be set if the
|
|
2853
2856
|
* column by which the table is grouped is already part of the `columns` aggregation of the table.
|
|
2854
2857
|
*
|
|
2855
|
-
* @deprecated
|
|
2856
|
-
* @experimental
|
|
2858
|
+
* @deprecated As of version 1.110. see the `enableGrouping` property for details.
|
|
2859
|
+
* @experimental As of version 1.28. This feature has a limited functionality.
|
|
2857
2860
|
*/
|
|
2858
2861
|
groupBy?: sap.ui.table.Column | string;
|
|
2859
2862
|
|
|
@@ -2878,7 +2881,7 @@ declare namespace sap {
|
|
|
2878
2881
|
/**
|
|
2879
2882
|
* fired when a column of the table has been selected
|
|
2880
2883
|
*
|
|
2881
|
-
* @deprecated
|
|
2884
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
2882
2885
|
*/
|
|
2883
2886
|
columnSelect?: (oEvent: Table$ColumnSelectEvent) => void;
|
|
2884
2887
|
|
|
@@ -2911,14 +2914,15 @@ declare namespace sap {
|
|
|
2911
2914
|
/**
|
|
2912
2915
|
* fired when the table is grouped (experimental!).
|
|
2913
2916
|
*
|
|
2914
|
-
* @deprecated
|
|
2917
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property for details.
|
|
2915
2918
|
*/
|
|
2916
2919
|
group?: (oEvent: Table$GroupEvent) => void;
|
|
2917
2920
|
|
|
2918
2921
|
/**
|
|
2919
2922
|
* fired when the visibility of a table column is changed.
|
|
2920
2923
|
*
|
|
2921
|
-
* @deprecated
|
|
2924
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
2925
|
+
* for details.
|
|
2922
2926
|
*/
|
|
2923
2927
|
columnVisibility?: (oEvent: Table$ColumnVisibilityEvent) => void;
|
|
2924
2928
|
|
|
@@ -2933,7 +2937,7 @@ declare namespace sap {
|
|
|
2933
2937
|
* fired when the user clicks a cell of the table.
|
|
2934
2938
|
*
|
|
2935
2939
|
* @since 1.21.0
|
|
2936
|
-
* @deprecated
|
|
2940
|
+
* @deprecated As of version 1.54. replaced by `beforeOpenContextMenu`.
|
|
2937
2941
|
*/
|
|
2938
2942
|
cellContextmenu?: (oEvent: Table$CellContextmenuEvent) => void;
|
|
2939
2943
|
|
|
@@ -3003,7 +3007,8 @@ declare namespace sap {
|
|
|
3003
3007
|
/**
|
|
3004
3008
|
* Describes the settings that can be provided to the TablePersoController constructor.
|
|
3005
3009
|
*
|
|
3006
|
-
* @deprecated
|
|
3010
|
+
* @deprecated As of version 1.115. Please use the {@link sap.m.p13n.Engine Engine} for personalization
|
|
3011
|
+
* instead.
|
|
3007
3012
|
*/
|
|
3008
3013
|
interface $TablePersoControllerSettings
|
|
3009
3014
|
extends sap.ui.base.$ManagedObjectSettings {
|
|
@@ -3084,8 +3089,8 @@ declare namespace sap {
|
|
|
3084
3089
|
* ```
|
|
3085
3090
|
*
|
|
3086
3091
|
*
|
|
3087
|
-
* @deprecated
|
|
3088
|
-
* with all bindings.
|
|
3092
|
+
* @deprecated As of version 1.46.3. replaced by the `numberOfExpandedLevels` binding parameter. May not
|
|
3093
|
+
* work with all bindings.
|
|
3089
3094
|
*/
|
|
3090
3095
|
expandFirstLevel?:
|
|
3091
3096
|
| boolean
|
|
@@ -3127,8 +3132,8 @@ declare namespace sap {
|
|
|
3127
3132
|
* ```
|
|
3128
3133
|
*
|
|
3129
3134
|
*
|
|
3130
|
-
* @deprecated
|
|
3131
|
-
* bindings.
|
|
3135
|
+
* @deprecated As of version 1.76. replaced by the `collapseRecursive` binding parameter. May not work with
|
|
3136
|
+
* all bindings.
|
|
3132
3137
|
*/
|
|
3133
3138
|
collapseRecursive?:
|
|
3134
3139
|
| boolean
|
|
@@ -3153,7 +3158,8 @@ declare namespace sap {
|
|
|
3153
3158
|
* ```
|
|
3154
3159
|
*
|
|
3155
3160
|
*
|
|
3156
|
-
* @deprecated
|
|
3161
|
+
* @deprecated As of version 1.76. replaced by the `rootLevel` binding parameter. May not work with all
|
|
3162
|
+
* bindings.
|
|
3157
3163
|
*/
|
|
3158
3164
|
rootLevel?:
|
|
3159
3165
|
| int
|
|
@@ -3175,7 +3181,7 @@ declare namespace sap {
|
|
|
3175
3181
|
/**
|
|
3176
3182
|
* Parameters of the Column#columnMenuOpen event.
|
|
3177
3183
|
*
|
|
3178
|
-
* @deprecated
|
|
3184
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation for details.
|
|
3179
3185
|
*/
|
|
3180
3186
|
interface Column$ColumnMenuOpenEventParameters {
|
|
3181
3187
|
/**
|
|
@@ -3268,7 +3274,7 @@ declare namespace sap {
|
|
|
3268
3274
|
/**
|
|
3269
3275
|
* Parameters of the Table#cellContextmenu event.
|
|
3270
3276
|
*
|
|
3271
|
-
* @deprecated
|
|
3277
|
+
* @deprecated As of version 1.54. replaced by `beforeOpenContextMenu`.
|
|
3272
3278
|
*/
|
|
3273
3279
|
interface Table$CellContextmenuEventParameters {
|
|
3274
3280
|
/**
|
|
@@ -3346,7 +3352,7 @@ declare namespace sap {
|
|
|
3346
3352
|
/**
|
|
3347
3353
|
* Parameters of the Table#columnSelect event.
|
|
3348
3354
|
*
|
|
3349
|
-
* @deprecated
|
|
3355
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
3350
3356
|
*/
|
|
3351
3357
|
interface Table$ColumnSelectEventParameters {
|
|
3352
3358
|
/**
|
|
@@ -3358,7 +3364,8 @@ declare namespace sap {
|
|
|
3358
3364
|
/**
|
|
3359
3365
|
* Parameters of the Table#columnVisibility event.
|
|
3360
3366
|
*
|
|
3361
|
-
* @deprecated
|
|
3367
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
3368
|
+
* for details.
|
|
3362
3369
|
*/
|
|
3363
3370
|
interface Table$ColumnVisibilityEventParameters {
|
|
3364
3371
|
/**
|
|
@@ -3415,7 +3422,7 @@ declare namespace sap {
|
|
|
3415
3422
|
/**
|
|
3416
3423
|
* Parameters of the Table#group event.
|
|
3417
3424
|
*
|
|
3418
|
-
* @deprecated
|
|
3425
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property for details.
|
|
3419
3426
|
*/
|
|
3420
3427
|
interface Table$GroupEventParameters {
|
|
3421
3428
|
/**
|
|
@@ -3756,8 +3763,8 @@ declare namespace sap {
|
|
|
3756
3763
|
/**
|
|
3757
3764
|
* A column menu which is used by the analytical column
|
|
3758
3765
|
*
|
|
3759
|
-
* @deprecated
|
|
3760
|
-
* @experimental
|
|
3766
|
+
* @deprecated As of version 1.117. replaced by the `headerMenu` association of `sap.ui.table.Column`.
|
|
3767
|
+
* @experimental As of version 1.21.
|
|
3761
3768
|
*/
|
|
3762
3769
|
class AnalyticalColumnMenu extends sap.ui.table.ColumnMenu {
|
|
3763
3770
|
/**
|
|
@@ -4077,7 +4084,7 @@ declare namespace sap {
|
|
|
4077
4084
|
*
|
|
4078
4085
|
* Default value is `"Bundled"`.
|
|
4079
4086
|
*
|
|
4080
|
-
* @deprecated
|
|
4087
|
+
* @deprecated As of version 1.44. replaced by the `autoExpandMode` binding parameter
|
|
4081
4088
|
*
|
|
4082
4089
|
* @returns Value of property `autoExpandMode`
|
|
4083
4090
|
*/
|
|
@@ -4105,7 +4112,7 @@ declare namespace sap {
|
|
|
4105
4112
|
*
|
|
4106
4113
|
* Default value is `true`.
|
|
4107
4114
|
*
|
|
4108
|
-
* @deprecated
|
|
4115
|
+
* @deprecated As of version 1.76. replaced by the `collapseRecursive` binding parameter
|
|
4109
4116
|
*
|
|
4110
4117
|
* @returns Value of property `collapseRecursive`
|
|
4111
4118
|
*/
|
|
@@ -4116,7 +4123,8 @@ declare namespace sap {
|
|
|
4116
4123
|
* Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
|
|
4117
4124
|
* return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
|
|
4118
4125
|
*
|
|
4119
|
-
* @deprecated
|
|
4126
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
4127
|
+
* for details.
|
|
4120
4128
|
*
|
|
4121
4129
|
* @returns Value of property `columnVisibilityMenuSorter`
|
|
4122
4130
|
*/
|
|
@@ -4126,7 +4134,7 @@ declare namespace sap {
|
|
|
4126
4134
|
*
|
|
4127
4135
|
* If dirty the content of the Table will be overlayed.
|
|
4128
4136
|
*
|
|
4129
|
-
* @deprecated
|
|
4137
|
+
* @deprecated As of version 1.21.2. replaced by {@link sap.ui.table.Table#setShowOverlay}
|
|
4130
4138
|
*
|
|
4131
4139
|
* @returns Value of property `dirty`
|
|
4132
4140
|
*/
|
|
@@ -4134,13 +4142,14 @@ declare namespace sap {
|
|
|
4134
4142
|
/**
|
|
4135
4143
|
* The `enableGrouping` property is not supported by the `AnalyticalTable` control.
|
|
4136
4144
|
*
|
|
4137
|
-
* @deprecated
|
|
4145
|
+
* @deprecated As of version 1.28. the `enableGrouping` property is not supported by the `AnalyticalTable`
|
|
4146
|
+
* control.
|
|
4138
4147
|
*/
|
|
4139
4148
|
getEnableGrouping(): boolean;
|
|
4140
4149
|
/**
|
|
4141
4150
|
* The `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
4142
4151
|
*
|
|
4143
|
-
* @deprecated
|
|
4152
|
+
* @deprecated As of version 1.28. the `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
4144
4153
|
*/
|
|
4145
4154
|
getGroupBy(): sap.ui.core.ID;
|
|
4146
4155
|
/**
|
|
@@ -4166,7 +4175,7 @@ declare namespace sap {
|
|
|
4166
4175
|
*
|
|
4167
4176
|
* Default value is `0`.
|
|
4168
4177
|
*
|
|
4169
|
-
* @deprecated
|
|
4178
|
+
* @deprecated As of version 1.44. replaced by the `numberOfExpandedLevels` binding parameter
|
|
4170
4179
|
*
|
|
4171
4180
|
* @returns Value of property `numberOfExpandedLevels`
|
|
4172
4181
|
*/
|
|
@@ -4216,7 +4225,7 @@ declare namespace sap {
|
|
|
4216
4225
|
*
|
|
4217
4226
|
* Default value is `false`.
|
|
4218
4227
|
*
|
|
4219
|
-
* @deprecated
|
|
4228
|
+
* @deprecated As of version 1.44. replaced by the `sumOnTop` binding parameter
|
|
4220
4229
|
*
|
|
4221
4230
|
* @returns Value of property `sumOnTop`
|
|
4222
4231
|
*/
|
|
@@ -4324,7 +4333,7 @@ declare namespace sap {
|
|
|
4324
4333
|
*
|
|
4325
4334
|
* Default value is `"Bundled"`.
|
|
4326
4335
|
*
|
|
4327
|
-
* @deprecated
|
|
4336
|
+
* @deprecated As of version 1.44. replaced by the `autoExpandMode` binding parameter
|
|
4328
4337
|
*
|
|
4329
4338
|
* @returns Reference to `this` in order to allow method chaining
|
|
4330
4339
|
*/
|
|
@@ -4359,7 +4368,7 @@ declare namespace sap {
|
|
|
4359
4368
|
*
|
|
4360
4369
|
* Default value is `true`.
|
|
4361
4370
|
*
|
|
4362
|
-
* @deprecated
|
|
4371
|
+
* @deprecated As of version 1.76. replaced by the `collapseRecursive` binding parameter
|
|
4363
4372
|
*
|
|
4364
4373
|
* @returns Reference to `this` in order to allow method chaining
|
|
4365
4374
|
*/
|
|
@@ -4377,7 +4386,8 @@ declare namespace sap {
|
|
|
4377
4386
|
*
|
|
4378
4387
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4379
4388
|
*
|
|
4380
|
-
* @deprecated
|
|
4389
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
4390
|
+
* for details.
|
|
4381
4391
|
*
|
|
4382
4392
|
* @returns Reference to `this` in order to allow method chaining
|
|
4383
4393
|
*/
|
|
@@ -4394,7 +4404,7 @@ declare namespace sap {
|
|
|
4394
4404
|
*
|
|
4395
4405
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
4396
4406
|
*
|
|
4397
|
-
* @deprecated
|
|
4407
|
+
* @deprecated As of version 1.21.2. replaced by {@link sap.ui.table.Table#setShowOverlay}
|
|
4398
4408
|
*
|
|
4399
4409
|
* @returns Reference to `this` in order to allow method chaining
|
|
4400
4410
|
*/
|
|
@@ -4407,7 +4417,8 @@ declare namespace sap {
|
|
|
4407
4417
|
/**
|
|
4408
4418
|
* The `enableGrouping` property is not supported by the `AnalyticalTable` control.
|
|
4409
4419
|
*
|
|
4410
|
-
* @deprecated
|
|
4420
|
+
* @deprecated As of version 1.28. the `enableGrouping` property is not supported by the `AnalyticalTable`
|
|
4421
|
+
* control.
|
|
4411
4422
|
*
|
|
4412
4423
|
* @returns Reference to `this` in order to allow method chaining
|
|
4413
4424
|
*/
|
|
@@ -4415,7 +4426,7 @@ declare namespace sap {
|
|
|
4415
4426
|
/**
|
|
4416
4427
|
* The `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
4417
4428
|
*
|
|
4418
|
-
* @deprecated
|
|
4429
|
+
* @deprecated As of version 1.28. the `groupBy` association is not supported by the `AnalyticalTable` control.
|
|
4419
4430
|
*
|
|
4420
4431
|
* @returns Reference to `this` in order to allow method chaining
|
|
4421
4432
|
*/
|
|
@@ -4445,7 +4456,7 @@ declare namespace sap {
|
|
|
4445
4456
|
*
|
|
4446
4457
|
* Default value is `0`.
|
|
4447
4458
|
*
|
|
4448
|
-
* @deprecated
|
|
4459
|
+
* @deprecated As of version 1.44. replaced by the `numberOfExpandedLevels` binding parameter
|
|
4449
4460
|
*
|
|
4450
4461
|
* @returns Reference to `this` in order to allow method chaining
|
|
4451
4462
|
*/
|
|
@@ -4514,7 +4525,7 @@ declare namespace sap {
|
|
|
4514
4525
|
*
|
|
4515
4526
|
* Default value is `false`.
|
|
4516
4527
|
*
|
|
4517
|
-
* @deprecated
|
|
4528
|
+
* @deprecated As of version 1.44. replaced by the `sumOnTop` binding parameter
|
|
4518
4529
|
*
|
|
4519
4530
|
* @returns Reference to `this` in order to allow method chaining
|
|
4520
4531
|
*/
|
|
@@ -4622,7 +4633,7 @@ declare namespace sap {
|
|
|
4622
4633
|
* Fires before the column menu is opened.
|
|
4623
4634
|
*
|
|
4624
4635
|
* @since 1.33.0
|
|
4625
|
-
* @deprecated
|
|
4636
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation for details.
|
|
4626
4637
|
*
|
|
4627
4638
|
* @returns Reference to `this` in order to allow method chaining
|
|
4628
4639
|
*/
|
|
@@ -4651,7 +4662,7 @@ declare namespace sap {
|
|
|
4651
4662
|
* Fires before the column menu is opened.
|
|
4652
4663
|
*
|
|
4653
4664
|
* @since 1.33.0
|
|
4654
|
-
* @deprecated
|
|
4665
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation for details.
|
|
4655
4666
|
*
|
|
4656
4667
|
* @returns Reference to `this` in order to allow method chaining
|
|
4657
4668
|
*/
|
|
@@ -4694,7 +4705,7 @@ declare namespace sap {
|
|
|
4694
4705
|
/**
|
|
4695
4706
|
* Destroys the menu in the aggregation {@link #getMenu menu}.
|
|
4696
4707
|
*
|
|
4697
|
-
* @deprecated
|
|
4708
|
+
* @deprecated As of version 1.117. use the `headerMenu` association instead.
|
|
4698
4709
|
*
|
|
4699
4710
|
* @returns Reference to `this` in order to allow method chaining
|
|
4700
4711
|
*/
|
|
@@ -4721,7 +4732,7 @@ declare namespace sap {
|
|
|
4721
4732
|
* The passed function and listener object must match the ones used for event registration.
|
|
4722
4733
|
*
|
|
4723
4734
|
* @since 1.33.0
|
|
4724
|
-
* @deprecated
|
|
4735
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation for details.
|
|
4725
4736
|
*
|
|
4726
4737
|
* @returns Reference to `this` in order to allow method chaining
|
|
4727
4738
|
*/
|
|
@@ -4742,7 +4753,7 @@ declare namespace sap {
|
|
|
4742
4753
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
4743
4754
|
*
|
|
4744
4755
|
* @since 1.33.0
|
|
4745
|
-
* @deprecated
|
|
4756
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation for details.
|
|
4746
4757
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
4747
4758
|
*
|
|
4748
4759
|
* @returns Whether or not to prevent the default action
|
|
@@ -4867,8 +4878,8 @@ declare namespace sap {
|
|
|
4867
4878
|
*
|
|
4868
4879
|
* Default value is `true`.
|
|
4869
4880
|
*
|
|
4870
|
-
* @deprecated
|
|
4871
|
-
* the property `width="auto"` instead.
|
|
4881
|
+
* @deprecated As of version 1.44. this property has no effect. Use the property `minWidth` in combination
|
|
4882
|
+
* with the property `width="auto"` instead.
|
|
4872
4883
|
*
|
|
4873
4884
|
* @returns Value of property `flexible`
|
|
4874
4885
|
*/
|
|
@@ -4880,7 +4891,7 @@ declare namespace sap {
|
|
|
4880
4891
|
*
|
|
4881
4892
|
* Default value is `false`.
|
|
4882
4893
|
*
|
|
4883
|
-
* @deprecated
|
|
4894
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property of `sap.ui.table.Table` for details.
|
|
4884
4895
|
*
|
|
4885
4896
|
* @returns Value of property `grouped`
|
|
4886
4897
|
*/
|
|
@@ -4939,7 +4950,7 @@ declare namespace sap {
|
|
|
4939
4950
|
* way or create own instances of `sap.ui.table.ColumnMenu`. To add a custom menu to a column, use the aggregation
|
|
4940
4951
|
* `menu` with a new instance of `sap.ui.unified.Menu`.
|
|
4941
4952
|
*
|
|
4942
|
-
* @deprecated
|
|
4953
|
+
* @deprecated As of version 1.117. use the `headerMenu` association instead.
|
|
4943
4954
|
*/
|
|
4944
4955
|
getMenu(): sap.ui.unified.Menu;
|
|
4945
4956
|
/**
|
|
@@ -5031,7 +5042,7 @@ declare namespace sap {
|
|
|
5031
5042
|
*
|
|
5032
5043
|
* Default value is `false`.
|
|
5033
5044
|
*
|
|
5034
|
-
* @deprecated
|
|
5045
|
+
* @deprecated As of version 1.120. replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
|
|
5035
5046
|
* property
|
|
5036
5047
|
*
|
|
5037
5048
|
* @returns Value of property `sorted`
|
|
@@ -5330,8 +5341,8 @@ declare namespace sap {
|
|
|
5330
5341
|
*
|
|
5331
5342
|
* Default value is `true`.
|
|
5332
5343
|
*
|
|
5333
|
-
* @deprecated
|
|
5334
|
-
* the property `width="auto"` instead.
|
|
5344
|
+
* @deprecated As of version 1.44. this property has no effect. Use the property `minWidth` in combination
|
|
5345
|
+
* with the property `width="auto"` instead.
|
|
5335
5346
|
*
|
|
5336
5347
|
* @returns Reference to `this` in order to allow method chaining
|
|
5337
5348
|
*/
|
|
@@ -5350,7 +5361,7 @@ declare namespace sap {
|
|
|
5350
5361
|
*
|
|
5351
5362
|
* Default value is `false`.
|
|
5352
5363
|
*
|
|
5353
|
-
* @deprecated
|
|
5364
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property of `sap.ui.table.Table` for details.
|
|
5354
5365
|
*
|
|
5355
5366
|
* @returns Reference to `this` in order to allow method chaining
|
|
5356
5367
|
*/
|
|
@@ -5431,7 +5442,7 @@ declare namespace sap {
|
|
|
5431
5442
|
/**
|
|
5432
5443
|
* Sets the aggregated {@link #getMenu menu}.
|
|
5433
5444
|
*
|
|
5434
|
-
* @deprecated
|
|
5445
|
+
* @deprecated As of version 1.117. use the `headerMenu` association instead.
|
|
5435
5446
|
*
|
|
5436
5447
|
* @returns Reference to `this` in order to allow method chaining
|
|
5437
5448
|
*/
|
|
@@ -5558,7 +5569,7 @@ declare namespace sap {
|
|
|
5558
5569
|
*
|
|
5559
5570
|
* Default value is `false`.
|
|
5560
5571
|
*
|
|
5561
|
-
* @deprecated
|
|
5572
|
+
* @deprecated As of version 1.120. replaced by {@link sap.ui.core.SortOrder SortOrder.None} for the `sortOrder`
|
|
5562
5573
|
* property
|
|
5563
5574
|
*
|
|
5564
5575
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -5671,7 +5682,7 @@ declare namespace sap {
|
|
|
5671
5682
|
/**
|
|
5672
5683
|
* Sorts the current column ascending or descending.
|
|
5673
5684
|
*
|
|
5674
|
-
* @deprecated
|
|
5685
|
+
* @deprecated As of version 1.5.1. Please use the function "sap.ui.Table.prototype.sort".
|
|
5675
5686
|
*
|
|
5676
5687
|
* @returns Reference to `this` in order to allow method chaining
|
|
5677
5688
|
*/
|
|
@@ -5684,14 +5695,14 @@ declare namespace sap {
|
|
|
5684
5695
|
/**
|
|
5685
5696
|
* Toggles the sort order of the column.
|
|
5686
5697
|
*
|
|
5687
|
-
* @deprecated
|
|
5698
|
+
* @deprecated As of version 1.5.1. Please use the function "sap.ui.Table.prototype.sort".
|
|
5688
5699
|
*/
|
|
5689
5700
|
toggleSort(): void;
|
|
5690
5701
|
}
|
|
5691
5702
|
/**
|
|
5692
5703
|
* The column menu provides all common actions that can be performed on a column.
|
|
5693
5704
|
*
|
|
5694
|
-
* @deprecated
|
|
5705
|
+
* @deprecated As of version 1.117. use the {@link sap.m.table.columnmenu.Menu} instead.
|
|
5695
5706
|
*/
|
|
5696
5707
|
class ColumnMenu extends sap.ui.unified.Menu {
|
|
5697
5708
|
/**
|
|
@@ -6438,15 +6449,16 @@ declare namespace sap {
|
|
|
6438
6449
|
*
|
|
6439
6450
|
* The highlight state of the rows.
|
|
6440
6451
|
*
|
|
6441
|
-
* If the highlight is set to {@link sap
|
|
6442
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
6452
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
6453
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
6443
6454
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
6444
6455
|
* for accessibility contrast reasons).
|
|
6445
6456
|
*
|
|
6446
6457
|
* Accessibility support is provided through the associated {@link sap.ui.table.RowSettings#setHighlightText highlightText }
|
|
6447
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
6448
|
-
* property does not need to be set because a default text is used. However, the default
|
|
6449
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
6458
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
6459
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
6460
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
6461
|
+
* property must be set.
|
|
6450
6462
|
*
|
|
6451
6463
|
* Default value is `"None"`.
|
|
6452
6464
|
*
|
|
@@ -6489,15 +6501,16 @@ declare namespace sap {
|
|
|
6489
6501
|
*
|
|
6490
6502
|
* The highlight state of the rows.
|
|
6491
6503
|
*
|
|
6492
|
-
* If the highlight is set to {@link sap
|
|
6493
|
-
* highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link sap
|
|
6504
|
+
* If the highlight is set to {@link module:sap/ui/core/message/MessageType MessageType.None} (default),
|
|
6505
|
+
* no highlights are visible. Valid values for the `highlight` property are values of the enumerations {@link module:sap/ui/core/message/MessageType }
|
|
6494
6506
|
* or {@link sap.ui.core.IndicationColor} (only values of `Indication01` to `Indication10` are supported
|
|
6495
6507
|
* for accessibility contrast reasons).
|
|
6496
6508
|
*
|
|
6497
6509
|
* Accessibility support is provided through the associated {@link sap.ui.table.RowSettings#setHighlightText highlightText }
|
|
6498
|
-
* property. If the `highlight` property is set to a value of {@link sap
|
|
6499
|
-
* property does not need to be set because a default text is used. However, the default
|
|
6500
|
-
* by setting the `highlightText` property. In all other cases the `highlightText`
|
|
6510
|
+
* property. If the `highlight` property is set to a value of {@link module:sap/ui/core/message/MessageType},
|
|
6511
|
+
* the `highlightText` property does not need to be set because a default text is used. However, the default
|
|
6512
|
+
* text can be overridden by setting the `highlightText` property. In all other cases the `highlightText`
|
|
6513
|
+
* property must be set.
|
|
6501
6514
|
*
|
|
6502
6515
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
6503
6516
|
*
|
|
@@ -6682,7 +6695,7 @@ declare namespace sap {
|
|
|
6682
6695
|
* Adds some plugin to the aggregation {@link #getPlugins plugins}.
|
|
6683
6696
|
*
|
|
6684
6697
|
* @since 1.64
|
|
6685
|
-
* @deprecated
|
|
6698
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
6686
6699
|
*
|
|
6687
6700
|
* @returns Reference to `this` in order to allow method chaining
|
|
6688
6701
|
*/
|
|
@@ -6889,7 +6902,7 @@ declare namespace sap {
|
|
|
6889
6902
|
* fired when the user clicks a cell of the table.
|
|
6890
6903
|
*
|
|
6891
6904
|
* @since 1.21.0
|
|
6892
|
-
* @deprecated
|
|
6905
|
+
* @deprecated As of version 1.54. replaced by `beforeOpenContextMenu`.
|
|
6893
6906
|
*
|
|
6894
6907
|
* @returns Reference to `this` in order to allow method chaining
|
|
6895
6908
|
*/
|
|
@@ -6918,7 +6931,7 @@ declare namespace sap {
|
|
|
6918
6931
|
* fired when the user clicks a cell of the table.
|
|
6919
6932
|
*
|
|
6920
6933
|
* @since 1.21.0
|
|
6921
|
-
* @deprecated
|
|
6934
|
+
* @deprecated As of version 1.54. replaced by `beforeOpenContextMenu`.
|
|
6922
6935
|
*
|
|
6923
6936
|
* @returns Reference to `this` in order to allow method chaining
|
|
6924
6937
|
*/
|
|
@@ -7083,7 +7096,7 @@ declare namespace sap {
|
|
|
7083
7096
|
*
|
|
7084
7097
|
* fired when a column of the table has been selected
|
|
7085
7098
|
*
|
|
7086
|
-
* @deprecated
|
|
7099
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
7087
7100
|
*
|
|
7088
7101
|
* @returns Reference to `this` in order to allow method chaining
|
|
7089
7102
|
*/
|
|
@@ -7110,7 +7123,7 @@ declare namespace sap {
|
|
|
7110
7123
|
*
|
|
7111
7124
|
* fired when a column of the table has been selected
|
|
7112
7125
|
*
|
|
7113
|
-
* @deprecated
|
|
7126
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
7114
7127
|
*
|
|
7115
7128
|
* @returns Reference to `this` in order to allow method chaining
|
|
7116
7129
|
*/
|
|
@@ -7133,7 +7146,8 @@ declare namespace sap {
|
|
|
7133
7146
|
*
|
|
7134
7147
|
* fired when the visibility of a table column is changed.
|
|
7135
7148
|
*
|
|
7136
|
-
* @deprecated
|
|
7149
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
7150
|
+
* for details.
|
|
7137
7151
|
*
|
|
7138
7152
|
* @returns Reference to `this` in order to allow method chaining
|
|
7139
7153
|
*/
|
|
@@ -7161,7 +7175,8 @@ declare namespace sap {
|
|
|
7161
7175
|
*
|
|
7162
7176
|
* fired when the visibility of a table column is changed.
|
|
7163
7177
|
*
|
|
7164
|
-
* @deprecated
|
|
7178
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
7179
|
+
* for details.
|
|
7165
7180
|
*
|
|
7166
7181
|
* @returns Reference to `this` in order to allow method chaining
|
|
7167
7182
|
*/
|
|
@@ -7342,7 +7357,7 @@ declare namespace sap {
|
|
|
7342
7357
|
*
|
|
7343
7358
|
* fired when the table is grouped (experimental!).
|
|
7344
7359
|
*
|
|
7345
|
-
* @deprecated
|
|
7360
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property for details.
|
|
7346
7361
|
*
|
|
7347
7362
|
* @returns Reference to `this` in order to allow method chaining
|
|
7348
7363
|
*/
|
|
@@ -7369,7 +7384,7 @@ declare namespace sap {
|
|
|
7369
7384
|
*
|
|
7370
7385
|
* fired when the table is grouped (experimental!).
|
|
7371
7386
|
*
|
|
7372
|
-
* @deprecated
|
|
7387
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property for details.
|
|
7373
7388
|
*
|
|
7374
7389
|
* @returns Reference to `this` in order to allow method chaining
|
|
7375
7390
|
*/
|
|
@@ -7612,7 +7627,7 @@ declare namespace sap {
|
|
|
7612
7627
|
*
|
|
7613
7628
|
* See {@link sap.ui.table.Column#autoResize} for details about the auto-resize feature.
|
|
7614
7629
|
*
|
|
7615
|
-
* @deprecated
|
|
7630
|
+
* @deprecated As of version 1.125. replaced by {@link sap.ui.table.Column#autoResize}
|
|
7616
7631
|
*/
|
|
7617
7632
|
autoResizeColumn(
|
|
7618
7633
|
/**
|
|
@@ -7700,7 +7715,7 @@ declare namespace sap {
|
|
|
7700
7715
|
* Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
|
|
7701
7716
|
*
|
|
7702
7717
|
* @since 1.64
|
|
7703
|
-
* @deprecated
|
|
7718
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
7704
7719
|
*
|
|
7705
7720
|
* @returns Reference to `this` in order to allow method chaining
|
|
7706
7721
|
*/
|
|
@@ -7737,7 +7752,8 @@ declare namespace sap {
|
|
|
7737
7752
|
/**
|
|
7738
7753
|
* Destroys the title in the aggregation {@link #getTitle title}.
|
|
7739
7754
|
*
|
|
7740
|
-
* @deprecated
|
|
7755
|
+
* @deprecated As of version 1.72. Use, for example, a `sap.m.Title` control in the `extension` aggregation
|
|
7756
|
+
* instead.
|
|
7741
7757
|
*
|
|
7742
7758
|
* @returns Reference to `this` in order to allow method chaining
|
|
7743
7759
|
*/
|
|
@@ -7745,7 +7761,7 @@ declare namespace sap {
|
|
|
7745
7761
|
/**
|
|
7746
7762
|
* Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
|
|
7747
7763
|
*
|
|
7748
|
-
* @deprecated
|
|
7764
|
+
* @deprecated As of version 1.38. This aggregation is deprecated, use the `extension` aggregation instead.
|
|
7749
7765
|
*
|
|
7750
7766
|
* @returns Reference to `this` in order to allow method chaining
|
|
7751
7767
|
*/
|
|
@@ -7817,7 +7833,7 @@ declare namespace sap {
|
|
|
7817
7833
|
* The passed function and listener object must match the ones used for event registration.
|
|
7818
7834
|
*
|
|
7819
7835
|
* @since 1.21.0
|
|
7820
|
-
* @deprecated
|
|
7836
|
+
* @deprecated As of version 1.54. replaced by `beforeOpenContextMenu`.
|
|
7821
7837
|
*
|
|
7822
7838
|
* @returns Reference to `this` in order to allow method chaining
|
|
7823
7839
|
*/
|
|
@@ -7891,7 +7907,7 @@ declare namespace sap {
|
|
|
7891
7907
|
*
|
|
7892
7908
|
* The passed function and listener object must match the ones used for event registration.
|
|
7893
7909
|
*
|
|
7894
|
-
* @deprecated
|
|
7910
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
7895
7911
|
*
|
|
7896
7912
|
* @returns Reference to `this` in order to allow method chaining
|
|
7897
7913
|
*/
|
|
@@ -7911,7 +7927,8 @@ declare namespace sap {
|
|
|
7911
7927
|
*
|
|
7912
7928
|
* The passed function and listener object must match the ones used for event registration.
|
|
7913
7929
|
*
|
|
7914
|
-
* @deprecated
|
|
7930
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
7931
|
+
* for details.
|
|
7915
7932
|
*
|
|
7916
7933
|
* @returns Reference to `this` in order to allow method chaining
|
|
7917
7934
|
*/
|
|
@@ -7988,7 +8005,7 @@ declare namespace sap {
|
|
|
7988
8005
|
*
|
|
7989
8006
|
* The passed function and listener object must match the ones used for event registration.
|
|
7990
8007
|
*
|
|
7991
|
-
* @deprecated
|
|
8008
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property for details.
|
|
7992
8009
|
*
|
|
7993
8010
|
* @returns Reference to `this` in order to allow method chaining
|
|
7994
8011
|
*/
|
|
@@ -8084,8 +8101,8 @@ declare namespace sap {
|
|
|
8084
8101
|
* **Please note: This method uses synchronous requests. Support and functioning ends with the support
|
|
8085
8102
|
* for synchronous requests in browsers.**
|
|
8086
8103
|
*
|
|
8087
|
-
* @deprecated
|
|
8088
|
-
* @experimental
|
|
8104
|
+
* @deprecated As of version 1.56. replaced by the `sap.ui.export` library.
|
|
8105
|
+
* @experimental Experimental because the property for the column/cell definitions (sortProperty) could
|
|
8089
8106
|
* change in future.
|
|
8090
8107
|
*
|
|
8091
8108
|
* @returns Export object
|
|
@@ -8165,7 +8182,7 @@ declare namespace sap {
|
|
|
8165
8182
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
8166
8183
|
*
|
|
8167
8184
|
* @since 1.21.0
|
|
8168
|
-
* @deprecated
|
|
8185
|
+
* @deprecated As of version 1.54. replaced by `beforeOpenContextMenu`.
|
|
8169
8186
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8170
8187
|
*
|
|
8171
8188
|
* @returns Whether or not to prevent the default action
|
|
@@ -8231,7 +8248,7 @@ declare namespace sap {
|
|
|
8231
8248
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
8232
8249
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
8233
8250
|
*
|
|
8234
|
-
* @deprecated
|
|
8251
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
8235
8252
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8236
8253
|
*
|
|
8237
8254
|
* @returns Whether or not to prevent the default action
|
|
@@ -8248,7 +8265,8 @@ declare namespace sap {
|
|
|
8248
8265
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
8249
8266
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
8250
8267
|
*
|
|
8251
|
-
* @deprecated
|
|
8268
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
8269
|
+
* for details.
|
|
8252
8270
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8253
8271
|
*
|
|
8254
8272
|
* @returns Whether or not to prevent the default action
|
|
@@ -8309,7 +8327,7 @@ declare namespace sap {
|
|
|
8309
8327
|
* Listeners may prevent the default action of this event by calling the `preventDefault` method on the
|
|
8310
8328
|
* event object. The return value of this method indicates whether the default action should be executed.
|
|
8311
8329
|
*
|
|
8312
|
-
* @deprecated
|
|
8330
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property for details.
|
|
8313
8331
|
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8314
8332
|
*
|
|
8315
8333
|
* @returns Whether or not to prevent the default action
|
|
@@ -8525,7 +8543,7 @@ declare namespace sap {
|
|
|
8525
8543
|
*
|
|
8526
8544
|
* Default value is `true`.
|
|
8527
8545
|
*
|
|
8528
|
-
* @deprecated
|
|
8546
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
8529
8547
|
*
|
|
8530
8548
|
* @returns Value of property `editable`
|
|
8531
8549
|
*/
|
|
@@ -8619,7 +8637,7 @@ declare namespace sap {
|
|
|
8619
8637
|
*
|
|
8620
8638
|
* Default value is `false`.
|
|
8621
8639
|
*
|
|
8622
|
-
* @deprecated
|
|
8640
|
+
* @deprecated As of version 1.110. the concept has been discarded.
|
|
8623
8641
|
*
|
|
8624
8642
|
* @returns Value of property `enableGrouping`
|
|
8625
8643
|
*/
|
|
@@ -8664,7 +8682,7 @@ declare namespace sap {
|
|
|
8664
8682
|
* Default value is `0`.
|
|
8665
8683
|
*
|
|
8666
8684
|
* @since 1.18.7
|
|
8667
|
-
* @deprecated
|
|
8685
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
8668
8686
|
*
|
|
8669
8687
|
* @returns Value of property `fixedBottomRowCount`
|
|
8670
8688
|
*/
|
|
@@ -8694,7 +8712,7 @@ declare namespace sap {
|
|
|
8694
8712
|
*
|
|
8695
8713
|
* Default value is `0`.
|
|
8696
8714
|
*
|
|
8697
|
-
* @deprecated
|
|
8715
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
8698
8716
|
*
|
|
8699
8717
|
* @returns Value of property `fixedRowCount`
|
|
8700
8718
|
*/
|
|
@@ -8710,8 +8728,8 @@ declare namespace sap {
|
|
|
8710
8728
|
/**
|
|
8711
8729
|
* ID of the element which is the current target of the association {@link #getGroupBy groupBy}, or `null`.
|
|
8712
8730
|
*
|
|
8713
|
-
* @deprecated
|
|
8714
|
-
* @experimental
|
|
8731
|
+
* @deprecated As of version 1.110. see the `enableGrouping` property for details.
|
|
8732
|
+
* @experimental As of version 1.28. This feature has a limited functionality.
|
|
8715
8733
|
*/
|
|
8716
8734
|
getGroupBy(): sap.ui.core.ID | null;
|
|
8717
8735
|
/**
|
|
@@ -8722,7 +8740,7 @@ declare namespace sap {
|
|
|
8722
8740
|
*
|
|
8723
8741
|
* Default value is `5`.
|
|
8724
8742
|
*
|
|
8725
|
-
* @deprecated
|
|
8743
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
8726
8744
|
*
|
|
8727
8745
|
* @returns Value of property `minAutoRowCount`
|
|
8728
8746
|
*/
|
|
@@ -8735,7 +8753,7 @@ declare namespace sap {
|
|
|
8735
8753
|
*
|
|
8736
8754
|
* Default value is `"Scrollbar"`.
|
|
8737
8755
|
*
|
|
8738
|
-
* @deprecated
|
|
8756
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
8739
8757
|
*
|
|
8740
8758
|
* @returns Value of property `navigationMode`
|
|
8741
8759
|
*/
|
|
@@ -8757,7 +8775,7 @@ declare namespace sap {
|
|
|
8757
8775
|
* plugin.
|
|
8758
8776
|
*
|
|
8759
8777
|
* @since 1.64
|
|
8760
|
-
* @deprecated
|
|
8778
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
8761
8779
|
*/
|
|
8762
8780
|
getPlugins(): sap.ui.table.plugins.SelectionPlugin[];
|
|
8763
8781
|
/**
|
|
@@ -8798,7 +8816,7 @@ declare namespace sap {
|
|
|
8798
8816
|
* If no value is set (includes 0), a default height is applied based on the content density configuration.
|
|
8799
8817
|
* In any `visibleRowCountMode`, the actual height can increase based on the content.
|
|
8800
8818
|
*
|
|
8801
|
-
* @deprecated
|
|
8819
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
8802
8820
|
*
|
|
8803
8821
|
* @returns Value of property `rowHeight`
|
|
8804
8822
|
*/
|
|
@@ -8874,7 +8892,7 @@ declare namespace sap {
|
|
|
8874
8892
|
/**
|
|
8875
8893
|
* Retrieves the lead selection index.
|
|
8876
8894
|
*
|
|
8877
|
-
* @deprecated
|
|
8895
|
+
* @deprecated As of version 1.69. replaced by {@link sap.ui.table.Table#getSelectedIndices}
|
|
8878
8896
|
*
|
|
8879
8897
|
* @returns Currently Selected Index.
|
|
8880
8898
|
*/
|
|
@@ -8929,7 +8947,7 @@ declare namespace sap {
|
|
|
8929
8947
|
*
|
|
8930
8948
|
* Default value is `false`.
|
|
8931
8949
|
*
|
|
8932
|
-
* @deprecated
|
|
8950
|
+
* @deprecated As of version 1.117. use a `ColumnMenu` with a custom menu item in the `headerMenu` association
|
|
8933
8951
|
* instead.
|
|
8934
8952
|
*
|
|
8935
8953
|
* @returns Value of property `showColumnVisibilityMenu`
|
|
@@ -8993,7 +9011,8 @@ declare namespace sap {
|
|
|
8993
9011
|
*
|
|
8994
9012
|
* Control or text of title section of the Table (if not set it will be hidden)
|
|
8995
9013
|
*
|
|
8996
|
-
* @deprecated
|
|
9014
|
+
* @deprecated As of version 1.72. Use, for example, a `sap.m.Title` control in the `extension` aggregation
|
|
9015
|
+
* instead.
|
|
8997
9016
|
*/
|
|
8998
9017
|
getTitle(): sap.ui.core.Control | string;
|
|
8999
9018
|
/**
|
|
@@ -9002,7 +9021,7 @@ declare namespace sap {
|
|
|
9002
9021
|
* Toolbar of the Table If not set, no toolbar area will be rendered. Note: The CSS class sapMTBHeader-CTX
|
|
9003
9022
|
* is applied on the given toolbar.
|
|
9004
9023
|
*
|
|
9005
|
-
* @deprecated
|
|
9024
|
+
* @deprecated As of version 1.38. This aggregation is deprecated, use the `extension` aggregation instead.
|
|
9006
9025
|
*/
|
|
9007
9026
|
getToolbar(): sap.ui.core.Toolbar;
|
|
9008
9027
|
/**
|
|
@@ -9012,7 +9031,7 @@ declare namespace sap {
|
|
|
9012
9031
|
*
|
|
9013
9032
|
* Default value is `10`.
|
|
9014
9033
|
*
|
|
9015
|
-
* @deprecated
|
|
9034
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
9016
9035
|
*
|
|
9017
9036
|
* @returns Value of property `visibleRowCount`
|
|
9018
9037
|
*/
|
|
@@ -9039,7 +9058,7 @@ declare namespace sap {
|
|
|
9039
9058
|
* Default value is `"Fixed"`.
|
|
9040
9059
|
*
|
|
9041
9060
|
* @since 1.9.2
|
|
9042
|
-
* @deprecated
|
|
9061
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
9043
9062
|
*
|
|
9044
9063
|
* @returns Value of property `visibleRowCountMode`
|
|
9045
9064
|
*/
|
|
@@ -9086,7 +9105,7 @@ declare namespace sap {
|
|
|
9086
9105
|
* and returns its index if found or -1 otherwise.
|
|
9087
9106
|
*
|
|
9088
9107
|
* @since 1.64
|
|
9089
|
-
* @deprecated
|
|
9108
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
9090
9109
|
*
|
|
9091
9110
|
* @returns The index of the provided control in the aggregation if found, or -1 otherwise
|
|
9092
9111
|
*/
|
|
@@ -9149,7 +9168,7 @@ declare namespace sap {
|
|
|
9149
9168
|
* Inserts a plugin into the aggregation {@link #getPlugins plugins}.
|
|
9150
9169
|
*
|
|
9151
9170
|
* @since 1.64
|
|
9152
|
-
* @deprecated
|
|
9171
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
9153
9172
|
*
|
|
9154
9173
|
* @returns Reference to `this` in order to allow method chaining
|
|
9155
9174
|
*/
|
|
@@ -9229,7 +9248,7 @@ declare namespace sap {
|
|
|
9229
9248
|
* Additionally, it unregisters them from the hosting UIArea.
|
|
9230
9249
|
*
|
|
9231
9250
|
* @since 1.64
|
|
9232
|
-
* @deprecated
|
|
9251
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
9233
9252
|
*
|
|
9234
9253
|
* @returns An array of the removed elements (might be empty)
|
|
9235
9254
|
*/
|
|
@@ -9283,7 +9302,7 @@ declare namespace sap {
|
|
|
9283
9302
|
* Removes a plugin from the aggregation {@link #getPlugins plugins}.
|
|
9284
9303
|
*
|
|
9285
9304
|
* @since 1.64
|
|
9286
|
-
* @deprecated
|
|
9305
|
+
* @deprecated As of version 1.120. Please add plugins to the `dependents` aggregation instead.
|
|
9287
9306
|
*
|
|
9288
9307
|
* @returns The removed plugin or `null`
|
|
9289
9308
|
*/
|
|
@@ -9422,7 +9441,7 @@ declare namespace sap {
|
|
|
9422
9441
|
*
|
|
9423
9442
|
* Default value is `true`.
|
|
9424
9443
|
*
|
|
9425
|
-
* @deprecated
|
|
9444
|
+
* @deprecated As of version 1.115. the concept has been discarded.
|
|
9426
9445
|
*
|
|
9427
9446
|
* @returns Reference to `this` in order to allow method chaining
|
|
9428
9447
|
*/
|
|
@@ -9558,7 +9577,7 @@ declare namespace sap {
|
|
|
9558
9577
|
*
|
|
9559
9578
|
* Default value is `false`.
|
|
9560
9579
|
*
|
|
9561
|
-
* @deprecated
|
|
9580
|
+
* @deprecated As of version 1.110. the concept has been discarded.
|
|
9562
9581
|
*
|
|
9563
9582
|
* @returns Reference to `this` in order to allow method chaining
|
|
9564
9583
|
*/
|
|
@@ -9617,7 +9636,7 @@ declare namespace sap {
|
|
|
9617
9636
|
* Default value is `0`.
|
|
9618
9637
|
*
|
|
9619
9638
|
* @since 1.18.7
|
|
9620
|
-
* @deprecated
|
|
9639
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
9621
9640
|
*
|
|
9622
9641
|
* @returns Reference to `this` in order to allow method chaining
|
|
9623
9642
|
*/
|
|
@@ -9661,7 +9680,7 @@ declare namespace sap {
|
|
|
9661
9680
|
*
|
|
9662
9681
|
* Default value is `0`.
|
|
9663
9682
|
*
|
|
9664
|
-
* @deprecated
|
|
9683
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
9665
9684
|
*
|
|
9666
9685
|
* @returns Reference to `this` in order to allow method chaining
|
|
9667
9686
|
*/
|
|
@@ -9686,8 +9705,8 @@ declare namespace sap {
|
|
|
9686
9705
|
/**
|
|
9687
9706
|
* Sets the associated {@link #getGroupBy groupBy}.
|
|
9688
9707
|
*
|
|
9689
|
-
* @deprecated
|
|
9690
|
-
* @experimental
|
|
9708
|
+
* @deprecated As of version 1.110. see the `enableGrouping` property for details.
|
|
9709
|
+
* @experimental As of version 1.28. This feature has a limited functionality.
|
|
9691
9710
|
*
|
|
9692
9711
|
* @returns Reference to `this` in order to allow method chaining
|
|
9693
9712
|
*/
|
|
@@ -9708,7 +9727,7 @@ declare namespace sap {
|
|
|
9708
9727
|
*
|
|
9709
9728
|
* Default value is `5`.
|
|
9710
9729
|
*
|
|
9711
|
-
* @deprecated
|
|
9730
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
9712
9731
|
*
|
|
9713
9732
|
* @returns Reference to `this` in order to allow method chaining
|
|
9714
9733
|
*/
|
|
@@ -9728,7 +9747,7 @@ declare namespace sap {
|
|
|
9728
9747
|
*
|
|
9729
9748
|
* Default value is `"Scrollbar"`.
|
|
9730
9749
|
*
|
|
9731
|
-
* @deprecated
|
|
9750
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
9732
9751
|
*
|
|
9733
9752
|
* @returns Reference to `this` in order to allow method chaining
|
|
9734
9753
|
*/
|
|
@@ -9801,7 +9820,7 @@ declare namespace sap {
|
|
|
9801
9820
|
*
|
|
9802
9821
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
9803
9822
|
*
|
|
9804
|
-
* @deprecated
|
|
9823
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
9805
9824
|
*
|
|
9806
9825
|
* @returns Reference to `this` in order to allow method chaining
|
|
9807
9826
|
*/
|
|
@@ -9929,7 +9948,7 @@ declare namespace sap {
|
|
|
9929
9948
|
*
|
|
9930
9949
|
* Default value is `false`.
|
|
9931
9950
|
*
|
|
9932
|
-
* @deprecated
|
|
9951
|
+
* @deprecated As of version 1.117. use a `ColumnMenu` with a custom menu item in the `headerMenu` association
|
|
9933
9952
|
* instead.
|
|
9934
9953
|
*
|
|
9935
9954
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -9995,7 +10014,8 @@ declare namespace sap {
|
|
|
9995
10014
|
/**
|
|
9996
10015
|
* Sets the aggregated {@link #getTitle title}.
|
|
9997
10016
|
*
|
|
9998
|
-
* @deprecated
|
|
10017
|
+
* @deprecated As of version 1.72. Use, for example, a `sap.m.Title` control in the `extension` aggregation
|
|
10018
|
+
* instead.
|
|
9999
10019
|
*
|
|
10000
10020
|
* @returns Reference to `this` in order to allow method chaining
|
|
10001
10021
|
*/
|
|
@@ -10008,7 +10028,7 @@ declare namespace sap {
|
|
|
10008
10028
|
/**
|
|
10009
10029
|
* Sets the aggregated {@link #getToolbar toolbar}.
|
|
10010
10030
|
*
|
|
10011
|
-
* @deprecated
|
|
10031
|
+
* @deprecated As of version 1.38. This aggregation is deprecated, use the `extension` aggregation instead.
|
|
10012
10032
|
*
|
|
10013
10033
|
* @returns Reference to `this` in order to allow method chaining
|
|
10014
10034
|
*/
|
|
@@ -10045,7 +10065,7 @@ declare namespace sap {
|
|
|
10045
10065
|
*
|
|
10046
10066
|
* Default value is `10`.
|
|
10047
10067
|
*
|
|
10048
|
-
* @deprecated
|
|
10068
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
10049
10069
|
*
|
|
10050
10070
|
* @returns Reference to `this` in order to allow method chaining
|
|
10051
10071
|
*/
|
|
@@ -10079,7 +10099,7 @@ declare namespace sap {
|
|
|
10079
10099
|
* Default value is `"Fixed"`.
|
|
10080
10100
|
*
|
|
10081
10101
|
* @since 1.9.2
|
|
10082
|
-
* @deprecated
|
|
10102
|
+
* @deprecated As of version 1.119. use the `rowMode` aggregation instead.
|
|
10083
10103
|
*
|
|
10084
10104
|
* @returns Reference to `this` in order to allow method chaining
|
|
10085
10105
|
*/
|
|
@@ -10145,7 +10165,8 @@ declare namespace sap {
|
|
|
10145
10165
|
* The TablePersoController can be used to connect a table with a persistence service.
|
|
10146
10166
|
*
|
|
10147
10167
|
* @since 1.21.1
|
|
10148
|
-
* @deprecated
|
|
10168
|
+
* @deprecated As of version 1.115. Please use the {@link sap.m.p13n.Engine Engine} for personalization
|
|
10169
|
+
* instead.
|
|
10149
10170
|
*/
|
|
10150
10171
|
class TablePersoController extends sap.ui.base.ManagedObject {
|
|
10151
10172
|
/**
|
|
@@ -10286,7 +10307,7 @@ declare namespace sap {
|
|
|
10286
10307
|
* Using this functionality will require to load the sap.m library because the personalization dialog
|
|
10287
10308
|
* is only available in this library for now.
|
|
10288
10309
|
*
|
|
10289
|
-
* @experimental
|
|
10310
|
+
* @experimental As of version 1.21.2. API might change / feature requires the sap.m library!
|
|
10290
10311
|
*/
|
|
10291
10312
|
openDialog(mSettings: object): void;
|
|
10292
10313
|
/**
|
|
@@ -10664,8 +10685,8 @@ declare namespace sap {
|
|
|
10664
10685
|
*
|
|
10665
10686
|
* Default value is `true`.
|
|
10666
10687
|
*
|
|
10667
|
-
* @deprecated
|
|
10668
|
-
* bindings.
|
|
10688
|
+
* @deprecated As of version 1.76. replaced by the `collapseRecursive` binding parameter. May not work with
|
|
10689
|
+
* all bindings.
|
|
10669
10690
|
*
|
|
10670
10691
|
* @returns Value of property `collapseRecursive`
|
|
10671
10692
|
*/
|
|
@@ -10673,7 +10694,7 @@ declare namespace sap {
|
|
|
10673
10694
|
/**
|
|
10674
10695
|
* The `enableGrouping` property is not supported by the `TreeTable` control.
|
|
10675
10696
|
*
|
|
10676
|
-
* @deprecated
|
|
10697
|
+
* @deprecated As of version 1.28. the `enableGrouping` property is not supported by the `TreeTable` control.
|
|
10677
10698
|
*/
|
|
10678
10699
|
getEnableGrouping(): boolean;
|
|
10679
10700
|
/**
|
|
@@ -10699,8 +10720,8 @@ declare namespace sap {
|
|
|
10699
10720
|
*
|
|
10700
10721
|
* Default value is `false`.
|
|
10701
10722
|
*
|
|
10702
|
-
* @deprecated
|
|
10703
|
-
* with all bindings.
|
|
10723
|
+
* @deprecated As of version 1.46.3. replaced by the `numberOfExpandedLevels` binding parameter. May not
|
|
10724
|
+
* work with all bindings.
|
|
10704
10725
|
*
|
|
10705
10726
|
* @returns Value of property `expandFirstLevel`
|
|
10706
10727
|
*/
|
|
@@ -10708,7 +10729,7 @@ declare namespace sap {
|
|
|
10708
10729
|
/**
|
|
10709
10730
|
* The `groupBy` association is not supported by the `TreeTable` control.
|
|
10710
10731
|
*
|
|
10711
|
-
* @deprecated
|
|
10732
|
+
* @deprecated As of version 1.28. the `groupBy` association is not supported by the `TreeTable` control.
|
|
10712
10733
|
*/
|
|
10713
10734
|
getGroupBy(): sap.ui.core.ID;
|
|
10714
10735
|
/**
|
|
@@ -10742,7 +10763,8 @@ declare namespace sap {
|
|
|
10742
10763
|
*
|
|
10743
10764
|
* Default value is `0`.
|
|
10744
10765
|
*
|
|
10745
|
-
* @deprecated
|
|
10766
|
+
* @deprecated As of version 1.76. replaced by the `rootLevel` binding parameter. May not work with all
|
|
10767
|
+
* bindings.
|
|
10746
10768
|
*
|
|
10747
10769
|
* @returns Value of property `rootLevel`
|
|
10748
10770
|
*/
|
|
@@ -10836,8 +10858,8 @@ declare namespace sap {
|
|
|
10836
10858
|
*
|
|
10837
10859
|
* Default value is `true`.
|
|
10838
10860
|
*
|
|
10839
|
-
* @deprecated
|
|
10840
|
-
* bindings.
|
|
10861
|
+
* @deprecated As of version 1.76. replaced by the `collapseRecursive` binding parameter. May not work with
|
|
10862
|
+
* all bindings.
|
|
10841
10863
|
*
|
|
10842
10864
|
* @returns Reference to `this` in order to allow method chaining
|
|
10843
10865
|
*/
|
|
@@ -10852,7 +10874,7 @@ declare namespace sap {
|
|
|
10852
10874
|
* See:
|
|
10853
10875
|
* sap.ui.table.TreeTable#setUseGroupMode
|
|
10854
10876
|
*
|
|
10855
|
-
* @deprecated
|
|
10877
|
+
* @deprecated As of version 1.28. the `enableGrouping` property is not supported by the `TreeTable` control.
|
|
10856
10878
|
* To get a group-like visualization the `useGroupMode` property can be used.
|
|
10857
10879
|
*
|
|
10858
10880
|
* @returns Reference to `this` in order to allow method chaining
|
|
@@ -10883,8 +10905,8 @@ declare namespace sap {
|
|
|
10883
10905
|
*
|
|
10884
10906
|
* Default value is `false`.
|
|
10885
10907
|
*
|
|
10886
|
-
* @deprecated
|
|
10887
|
-
* with all bindings.
|
|
10908
|
+
* @deprecated As of version 1.46.3. replaced by the `numberOfExpandedLevels` binding parameter. May not
|
|
10909
|
+
* work with all bindings.
|
|
10888
10910
|
*
|
|
10889
10911
|
* @returns Reference to `this` in order to allow method chaining
|
|
10890
10912
|
*/
|
|
@@ -10913,7 +10935,7 @@ declare namespace sap {
|
|
|
10913
10935
|
/**
|
|
10914
10936
|
* The `groupBy` association is not supported by the `TreeTable` control.
|
|
10915
10937
|
*
|
|
10916
|
-
* @deprecated
|
|
10938
|
+
* @deprecated As of version 1.28. the `groupBy` association is not supported by the `TreeTable` control.
|
|
10917
10939
|
*
|
|
10918
10940
|
* @returns Reference to `this` in order to allow method chaining
|
|
10919
10941
|
*/
|
|
@@ -10958,7 +10980,8 @@ declare namespace sap {
|
|
|
10958
10980
|
*
|
|
10959
10981
|
* Default value is `0`.
|
|
10960
10982
|
*
|
|
10961
|
-
* @deprecated
|
|
10983
|
+
* @deprecated As of version 1.76. replaced by the `rootLevel` binding parameter. May not work with all
|
|
10984
|
+
* bindings.
|
|
10962
10985
|
*
|
|
10963
10986
|
* @returns Reference to `this` in order to allow method chaining
|
|
10964
10987
|
*/
|
|
@@ -11081,7 +11104,7 @@ declare namespace sap {
|
|
|
11081
11104
|
*
|
|
11082
11105
|
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'NavigationMode'.
|
|
11083
11106
|
*
|
|
11084
|
-
* @deprecated
|
|
11107
|
+
* @deprecated As of version 1.38. the concept has been discarded.
|
|
11085
11108
|
*/
|
|
11086
11109
|
enum NavigationMode {
|
|
11087
11110
|
/**
|
|
@@ -11090,7 +11113,7 @@ declare namespace sap {
|
|
|
11090
11113
|
* a visual representation. No matter which navigation mode is used, data fetched from an OData service
|
|
11091
11114
|
* is loaded page-wise.
|
|
11092
11115
|
*
|
|
11093
|
-
* @deprecated
|
|
11116
|
+
* @deprecated As of version 1.38. replaced by {@link sap.ui.table.NavigationMode.Scrollbar}
|
|
11094
11117
|
*/
|
|
11095
11118
|
Paginator = "Paginator",
|
|
11096
11119
|
/**
|
|
@@ -11103,7 +11126,7 @@ declare namespace sap {
|
|
|
11103
11126
|
*
|
|
11104
11127
|
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'ResetAllMode'.
|
|
11105
11128
|
*
|
|
11106
|
-
* @deprecated
|
|
11129
|
+
* @deprecated As of version 1.115. replaced by {@link sap.m.p13n.Engine}
|
|
11107
11130
|
*/
|
|
11108
11131
|
enum ResetAllMode {
|
|
11109
11132
|
/**
|
|
@@ -11166,7 +11189,7 @@ declare namespace sap {
|
|
|
11166
11189
|
/**
|
|
11167
11190
|
* Select multiple rows at a time.
|
|
11168
11191
|
*
|
|
11169
|
-
* @deprecated
|
|
11192
|
+
* @deprecated As of version 1.38. replaced by {@link sap.ui.table.SelectionMode.MultiToggle}
|
|
11170
11193
|
*/
|
|
11171
11194
|
Multi = "Multi",
|
|
11172
11195
|
/**
|
|
@@ -11205,7 +11228,7 @@ declare namespace sap {
|
|
|
11205
11228
|
*
|
|
11206
11229
|
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'SortOrder'.
|
|
11207
11230
|
*
|
|
11208
|
-
* @deprecated
|
|
11231
|
+
* @deprecated As of version 1.120. replaced with `sap.ui.core.SortOrder`
|
|
11209
11232
|
*/
|
|
11210
11233
|
enum SortOrder {
|
|
11211
11234
|
/**
|
|
@@ -11222,7 +11245,7 @@ declare namespace sap {
|
|
|
11222
11245
|
*
|
|
11223
11246
|
* This enum is part of the 'sap/ui/table/library' module export and must be accessed by the property 'VisibleRowCountMode'.
|
|
11224
11247
|
*
|
|
11225
|
-
* @deprecated
|
|
11248
|
+
* @deprecated As of version 1.119. see the `rowMode` aggregation of `sap.ui.table.Table` for more details.
|
|
11226
11249
|
*/
|
|
11227
11250
|
enum VisibleRowCountMode {
|
|
11228
11251
|
/**
|
|
@@ -11250,7 +11273,7 @@ declare namespace sap {
|
|
|
11250
11273
|
*
|
|
11251
11274
|
* This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
|
|
11252
11275
|
*
|
|
11253
|
-
* @deprecated
|
|
11276
|
+
* @deprecated As of version 1.120. replaced by `sap.ui.model.TreeAutoExpandMode`
|
|
11254
11277
|
*/
|
|
11255
11278
|
type TreeAutoExpandMode = sap.ui.model.TreeAutoExpandMode;
|
|
11256
11279
|
|
|
@@ -11265,7 +11288,7 @@ declare namespace sap {
|
|
|
11265
11288
|
/**
|
|
11266
11289
|
* Event object of the Column#columnMenuOpen event.
|
|
11267
11290
|
*
|
|
11268
|
-
* @deprecated
|
|
11291
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation for details.
|
|
11269
11292
|
*/
|
|
11270
11293
|
type Column$ColumnMenuOpenEvent = sap.ui.base.Event<
|
|
11271
11294
|
Column$ColumnMenuOpenEventParameters,
|
|
@@ -11307,7 +11330,7 @@ declare namespace sap {
|
|
|
11307
11330
|
/**
|
|
11308
11331
|
* Event object of the Table#cellContextmenu event.
|
|
11309
11332
|
*
|
|
11310
|
-
* @deprecated
|
|
11333
|
+
* @deprecated As of version 1.54. replaced by `beforeOpenContextMenu`.
|
|
11311
11334
|
*/
|
|
11312
11335
|
type Table$CellContextmenuEvent = sap.ui.base.Event<
|
|
11313
11336
|
Table$CellContextmenuEventParameters,
|
|
@@ -11341,7 +11364,7 @@ declare namespace sap {
|
|
|
11341
11364
|
/**
|
|
11342
11365
|
* Event object of the Table#columnSelect event.
|
|
11343
11366
|
*
|
|
11344
|
-
* @deprecated
|
|
11367
|
+
* @deprecated As of version 1.117. see the `headerMenu` aggregation of `sap.ui.table.Column` for details.
|
|
11345
11368
|
*/
|
|
11346
11369
|
type Table$ColumnSelectEvent = sap.ui.base.Event<
|
|
11347
11370
|
Table$ColumnSelectEventParameters,
|
|
@@ -11351,7 +11374,8 @@ declare namespace sap {
|
|
|
11351
11374
|
/**
|
|
11352
11375
|
* Event object of the Table#columnVisibility event.
|
|
11353
11376
|
*
|
|
11354
|
-
* @deprecated
|
|
11377
|
+
* @deprecated As of version 1.117. see the `showColumnVisibilityMenu` property of `sap.ui.table.Table`
|
|
11378
|
+
* for details.
|
|
11355
11379
|
*/
|
|
11356
11380
|
type Table$ColumnVisibilityEvent = sap.ui.base.Event<
|
|
11357
11381
|
Table$ColumnVisibilityEventParameters,
|
|
@@ -11385,7 +11409,7 @@ declare namespace sap {
|
|
|
11385
11409
|
/**
|
|
11386
11410
|
* Event object of the Table#group event.
|
|
11387
11411
|
*
|
|
11388
|
-
* @deprecated
|
|
11412
|
+
* @deprecated As of version 1.118. see the `enableGrouping` property for details.
|
|
11389
11413
|
*/
|
|
11390
11414
|
type Table$GroupEvent = sap.ui.base.Event<
|
|
11391
11415
|
Table$GroupEventParameters,
|