@openui5/types 1.126.0 → 1.127.0
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 +1 -16
- package/types/sap.m.d.ts +312 -38
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +17 -11
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +211 -20
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +3 -1
- package/types/sap.ui.integration.d.ts +45 -1
- package/types/sap.ui.layout.d.ts +36 -7
- package/types/sap.ui.mdc.d.ts +85 -1
- package/types/sap.ui.rta.d.ts +4 -2
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +1 -1
- package/types/sap.ui.table.d.ts +20 -6
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +303 -18
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +1 -1
- package/types/sap.ui.webc.fiori.d.ts +1 -1
- package/types/sap.ui.webc.main.d.ts +1 -1
- package/types/sap.uxap.d.ts +1 -1
package/types/sap.ui.layout.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.127.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/layout/library" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -6718,7 +6718,7 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6718
6718
|
*
|
|
6719
6719
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
6720
6720
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
6721
|
-
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6721
|
+
* In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6722
6722
|
* to the needed value.
|
|
6723
6723
|
*/
|
|
6724
6724
|
getTitle(): Title | string;
|
|
@@ -6728,7 +6728,7 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6728
6728
|
* Toolbar of the `Form`.
|
|
6729
6729
|
*
|
|
6730
6730
|
* **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
|
|
6731
|
-
* must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
|
|
6731
|
+
* must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
|
|
6732
6732
|
* Use the right title level to meet the visual requirements. This might be theme-dependent.
|
|
6733
6733
|
*
|
|
6734
6734
|
* @since 1.36.0
|
|
@@ -6944,7 +6944,7 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6944
6944
|
*
|
|
6945
6945
|
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
6946
6946
|
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
6947
|
-
* In this case provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6947
|
+
* In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
6948
6948
|
* to the needed value.
|
|
6949
6949
|
*/
|
|
6950
6950
|
title?: string | Title | PropertyBindingInfo;
|
|
@@ -6953,7 +6953,7 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6953
6953
|
* Toolbar of the `Form`.
|
|
6954
6954
|
*
|
|
6955
6955
|
* **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
|
|
6956
|
-
* must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
|
|
6956
|
+
* must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
|
|
6957
6957
|
* Use the right title level to meet the visual requirements. This might be theme-dependent.
|
|
6958
6958
|
*
|
|
6959
6959
|
* @since 1.36.0
|
|
@@ -6969,6 +6969,10 @@ declare module "sap/ui/layout/form/Form" {
|
|
|
6969
6969
|
/**
|
|
6970
6970
|
* Association to controls / IDs that label this control (see WAI-ARIA attribute `aria-labelledby`).
|
|
6971
6971
|
*
|
|
6972
|
+
* **Note:** Every `Form` needs to have some title or label (at least for screen reader support). If no
|
|
6973
|
+
* `Title` is set, and the `Form` is not a child or a control with a title, such as {@link sap.m.Panel Panel }
|
|
6974
|
+
* or {@link sap.m.Dialog Dialog}, a label or title needs to be assigned using the `ariaLabelledBy` association.
|
|
6975
|
+
*
|
|
6972
6976
|
* @since 1.28.0
|
|
6973
6977
|
*/
|
|
6974
6978
|
ariaLabelledBy?: Array<Control | string>;
|
|
@@ -7429,6 +7433,10 @@ declare module "sap/ui/layout/form/FormContainer" {
|
|
|
7429
7433
|
* **Note:** This attribute is only rendered if the `FormContainer` has it's own DOM representation in the
|
|
7430
7434
|
* used `FormLayout`.
|
|
7431
7435
|
*
|
|
7436
|
+
* **Note:** If there is more than one `FormContainers`, every `FormContainer` needs to have some title
|
|
7437
|
+
* or label (at least for screen reader support). If no `Title` is set, a label or title needs to be assigned
|
|
7438
|
+
* using the `ariaLabelledBy` association.
|
|
7439
|
+
*
|
|
7432
7440
|
* @since 1.36.0
|
|
7433
7441
|
*/
|
|
7434
7442
|
ariaLabelledBy?: Array<Control | string>;
|
|
@@ -10075,6 +10083,13 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10075
10083
|
*
|
|
10076
10084
|
* Title element of the `SimpleForm`. Can either be a `Title` element, or a string.
|
|
10077
10085
|
*
|
|
10086
|
+
* **Note:** If a `Toolbar` is used, the `Title` is ignored.
|
|
10087
|
+
*
|
|
10088
|
+
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
10089
|
+
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
10090
|
+
* In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
10091
|
+
* to the needed value.
|
|
10092
|
+
*
|
|
10078
10093
|
* @since 1.16.3
|
|
10079
10094
|
*/
|
|
10080
10095
|
getTitle(): Title | string;
|
|
@@ -10084,7 +10099,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
10084
10099
|
* Toolbar of the `SimpleForm`.
|
|
10085
10100
|
*
|
|
10086
10101
|
* **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
|
|
10087
|
-
* must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
|
|
10102
|
+
* must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
|
|
10088
10103
|
*
|
|
10089
10104
|
* @since 1.36.0
|
|
10090
10105
|
*/
|
|
@@ -11041,6 +11056,13 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
11041
11056
|
/**
|
|
11042
11057
|
* Title element of the `SimpleForm`. Can either be a `Title` element, or a string.
|
|
11043
11058
|
*
|
|
11059
|
+
* **Note:** If a `Toolbar` is used, the `Title` is ignored.
|
|
11060
|
+
*
|
|
11061
|
+
* **Note:** If the title is provided as a string, the title is rendered with a theme-dependent default
|
|
11062
|
+
* level. As the `Form` control cannot know the structure of the page, this might not fit the page structure.
|
|
11063
|
+
* In this case, provide the title using a `Title` element and set its {@link sap.ui.core.Title#setLevel level }
|
|
11064
|
+
* to the needed value.
|
|
11065
|
+
*
|
|
11044
11066
|
* @since 1.16.3
|
|
11045
11067
|
*/
|
|
11046
11068
|
title?: string | Title | PropertyBindingInfo;
|
|
@@ -11049,7 +11071,7 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
11049
11071
|
* Toolbar of the `SimpleForm`.
|
|
11050
11072
|
*
|
|
11051
11073
|
* **Note:** If a `Toolbar` is used, the `Title` is ignored. If a title is needed inside the `Toolbar` it
|
|
11052
|
-
* must be added at content to the `Toolbar`. In this case add the `Title` to the `ariaLabelledBy` association.
|
|
11074
|
+
* must be added at content to the `Toolbar`. In this case, add the `Title` to the `ariaLabelledBy` association.
|
|
11053
11075
|
*
|
|
11054
11076
|
* @since 1.36.0
|
|
11055
11077
|
*/
|
|
@@ -11058,6 +11080,10 @@ declare module "sap/ui/layout/form/SimpleForm" {
|
|
|
11058
11080
|
/**
|
|
11059
11081
|
* Association to controls / IDs which label this control (see WAI-ARIA attribute `aria-labelledby`).
|
|
11060
11082
|
*
|
|
11083
|
+
* **Note:** Every `Form` needs to have some title or label (at least for screen reader support). If no
|
|
11084
|
+
* `Title` is set, and the `Form` is not a child or a control with a title, such as {@link sap.m.Panel Panel }
|
|
11085
|
+
* or {@link sap.m.Dialog Dialog}, a label or title needs to be assigned using the `ariaLabelledBy` association.
|
|
11086
|
+
*
|
|
11061
11087
|
* @since 1.32.0
|
|
11062
11088
|
*/
|
|
11063
11089
|
ariaLabelledBy?: Array<Control | string>;
|
|
@@ -14977,6 +15003,9 @@ declare module "sap/ui/layout/VerticalLayout" {
|
|
|
14977
15003
|
/**
|
|
14978
15004
|
* In this layout the content controls are rendered one below the other.
|
|
14979
15005
|
*
|
|
15006
|
+
* **Note:** `VerticalLayout` is not a focusable element and therefore the inheritance of the `tooltip`
|
|
15007
|
+
* property isn't supported.
|
|
15008
|
+
*
|
|
14980
15009
|
* @since 1.16.0
|
|
14981
15010
|
*/
|
|
14982
15011
|
export default class VerticalLayout extends Control {
|
package/types/sap.ui.mdc.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.127.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/mdc/AggregationBaseDelegate" {
|
|
4
4
|
import BaseDelegate from "sap/ui/mdc/BaseDelegate";
|
|
@@ -4278,6 +4278,10 @@ declare module "sap/ui/mdc/Chart" {
|
|
|
4278
4278
|
* on a selectionDetails popover
|
|
4279
4279
|
*/
|
|
4280
4280
|
unitPath?: object;
|
|
4281
|
+
/**
|
|
4282
|
+
* The timeUnit type for a TimeDimension
|
|
4283
|
+
*/
|
|
4284
|
+
timeUnitType?: object;
|
|
4281
4285
|
};
|
|
4282
4286
|
|
|
4283
4287
|
/**
|
|
@@ -20430,6 +20434,11 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20430
20434
|
* ID of the navigated item. (This is needed to set the corresponding aria-attribute)
|
|
20431
20435
|
*/
|
|
20432
20436
|
itemId?: string;
|
|
20437
|
+
|
|
20438
|
+
/**
|
|
20439
|
+
* If `true` the filtering was executed case sensitive
|
|
20440
|
+
*/
|
|
20441
|
+
caseSensitive?: boolean;
|
|
20433
20442
|
}
|
|
20434
20443
|
|
|
20435
20444
|
/**
|
|
@@ -20546,6 +20555,11 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20546
20555
|
*/
|
|
20547
20556
|
itemId?: string;
|
|
20548
20557
|
|
|
20558
|
+
/**
|
|
20559
|
+
* Number of found items
|
|
20560
|
+
*/
|
|
20561
|
+
items?: int;
|
|
20562
|
+
|
|
20549
20563
|
/**
|
|
20550
20564
|
* If `true` the filtering was executed case sensitive
|
|
20551
20565
|
*/
|
|
@@ -20559,6 +20573,19 @@ declare module "sap/ui/mdc/ValueHelp" {
|
|
|
20559
20573
|
ValueHelp$TypeaheadSuggestedEventParameters,
|
|
20560
20574
|
ValueHelp
|
|
20561
20575
|
>;
|
|
20576
|
+
|
|
20577
|
+
/**
|
|
20578
|
+
* Parameters of the ValueHelp#visualFocusSet event.
|
|
20579
|
+
*/
|
|
20580
|
+
export interface ValueHelp$VisualFocusSetEventParameters {}
|
|
20581
|
+
|
|
20582
|
+
/**
|
|
20583
|
+
* Event object of the ValueHelp#visualFocusSet event.
|
|
20584
|
+
*/
|
|
20585
|
+
export type ValueHelp$VisualFocusSetEvent = Event<
|
|
20586
|
+
ValueHelp$VisualFocusSetEventParameters,
|
|
20587
|
+
ValueHelp
|
|
20588
|
+
>;
|
|
20562
20589
|
}
|
|
20563
20590
|
|
|
20564
20591
|
declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
@@ -20858,6 +20885,17 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
20858
20885
|
*/
|
|
20859
20886
|
oEvent: Event
|
|
20860
20887
|
): void;
|
|
20888
|
+
/**
|
|
20889
|
+
* Handles the `visualFocusSet` event of the content.
|
|
20890
|
+
*
|
|
20891
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
20892
|
+
*/
|
|
20893
|
+
handleVisualFocusSet(
|
|
20894
|
+
/**
|
|
20895
|
+
* event
|
|
20896
|
+
*/
|
|
20897
|
+
oEvent: Event
|
|
20898
|
+
): void;
|
|
20861
20899
|
/**
|
|
20862
20900
|
* Checks for the provided `sap.ui.mdc.valuehelp.base.Content` in the aggregation {@link #getContent content}.
|
|
20863
20901
|
* and returns its index if found or -1 otherwise.
|
|
@@ -21078,6 +21116,11 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21078
21116
|
* ID of the navigated item. (This is needed to set the corresponding aria-attribute)
|
|
21079
21117
|
*/
|
|
21080
21118
|
itemId?: string;
|
|
21119
|
+
|
|
21120
|
+
/**
|
|
21121
|
+
* If `true` the filtering was executed case sensitive
|
|
21122
|
+
*/
|
|
21123
|
+
caseSensitive?: boolean;
|
|
21081
21124
|
}
|
|
21082
21125
|
|
|
21083
21126
|
/**
|
|
@@ -21183,6 +21226,11 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21183
21226
|
*/
|
|
21184
21227
|
itemId?: string;
|
|
21185
21228
|
|
|
21229
|
+
/**
|
|
21230
|
+
* Number of found items
|
|
21231
|
+
*/
|
|
21232
|
+
items?: int;
|
|
21233
|
+
|
|
21186
21234
|
/**
|
|
21187
21235
|
* If `true` the filtering was executed case sensitive
|
|
21188
21236
|
*/
|
|
@@ -21196,6 +21244,19 @@ declare module "sap/ui/mdc/valuehelp/base/Container" {
|
|
|
21196
21244
|
Container$TypeaheadSuggestedEventParameters,
|
|
21197
21245
|
Container
|
|
21198
21246
|
>;
|
|
21247
|
+
|
|
21248
|
+
/**
|
|
21249
|
+
* Parameters of the Container#visualFocusSet event.
|
|
21250
|
+
*/
|
|
21251
|
+
export interface Container$VisualFocusSetEventParameters {}
|
|
21252
|
+
|
|
21253
|
+
/**
|
|
21254
|
+
* Event object of the Container#visualFocusSet event.
|
|
21255
|
+
*/
|
|
21256
|
+
export type Container$VisualFocusSetEvent = Event<
|
|
21257
|
+
Container$VisualFocusSetEventParameters,
|
|
21258
|
+
Container
|
|
21259
|
+
>;
|
|
21199
21260
|
}
|
|
21200
21261
|
|
|
21201
21262
|
declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
@@ -21645,6 +21706,11 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
21645
21706
|
* ID of the navigated item. (This is needed to set the corresponding aria-attribute)
|
|
21646
21707
|
*/
|
|
21647
21708
|
itemId?: string;
|
|
21709
|
+
|
|
21710
|
+
/**
|
|
21711
|
+
* If `true` the filtering was executed case sensitive
|
|
21712
|
+
*/
|
|
21713
|
+
caseSensitive?: boolean;
|
|
21648
21714
|
}
|
|
21649
21715
|
|
|
21650
21716
|
/**
|
|
@@ -21714,6 +21780,11 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
21714
21780
|
*/
|
|
21715
21781
|
itemId?: string;
|
|
21716
21782
|
|
|
21783
|
+
/**
|
|
21784
|
+
* Number of found items
|
|
21785
|
+
*/
|
|
21786
|
+
items?: int;
|
|
21787
|
+
|
|
21717
21788
|
/**
|
|
21718
21789
|
* If `true` the filtering was executed case sensitive
|
|
21719
21790
|
*/
|
|
@@ -21727,6 +21798,19 @@ declare module "sap/ui/mdc/valuehelp/base/Content" {
|
|
|
21727
21798
|
Content$TypeaheadSuggestedEventParameters,
|
|
21728
21799
|
Content
|
|
21729
21800
|
>;
|
|
21801
|
+
|
|
21802
|
+
/**
|
|
21803
|
+
* Parameters of the Content#visualFocusSet event.
|
|
21804
|
+
*/
|
|
21805
|
+
export interface Content$VisualFocusSetEventParameters {}
|
|
21806
|
+
|
|
21807
|
+
/**
|
|
21808
|
+
* Event object of the Content#visualFocusSet event.
|
|
21809
|
+
*/
|
|
21810
|
+
export type Content$VisualFocusSetEvent = Event<
|
|
21811
|
+
Content$VisualFocusSetEventParameters,
|
|
21812
|
+
Content
|
|
21813
|
+
>;
|
|
21730
21814
|
}
|
|
21731
21815
|
|
|
21732
21816
|
declare module "sap/ui/mdc/valuehelp/base/FilterableListContent" {
|
package/types/sap.ui.rta.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.127.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/rta/api/startAdaptation" {
|
|
4
4
|
import Control from "sap/ui/core/Control";
|
|
@@ -8,7 +8,9 @@ declare module "sap/ui/rta/api/startAdaptation" {
|
|
|
8
8
|
/**
|
|
9
9
|
* Starts UI adaptation, initiated for an application at the passed root control instance. With this API
|
|
10
10
|
* you are also able to modify the UI adaptation plugins list and or add some event handler functions to
|
|
11
|
-
* be called on start, failed and stop events.
|
|
11
|
+
* be called on start, failed and stop events. CAUTION: In the key user layer (CUSTOMER) the adaptation
|
|
12
|
+
* mode starts automatically after a reload triggered by the adaptation mode (e.g. due to personalization
|
|
13
|
+
* changes or versioning). In this case the RuntimeAuthoring class will be started with default parameters.
|
|
12
14
|
*
|
|
13
15
|
* @since 1.83
|
|
14
16
|
*
|
package/types/sap.ui.suite.d.ts
CHANGED
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.127.0
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -5327,15 +5327,15 @@ declare module "sap/ui/table/rowmodes/Type" {
|
|
|
5327
5327
|
*/
|
|
5328
5328
|
enum Type {
|
|
5329
5329
|
/**
|
|
5330
|
-
* Equivalent to the default configuration of {@link
|
|
5330
|
+
* Equivalent to the default configuration of {@link sap.ui.table.rowmodes.Auto}
|
|
5331
5331
|
*/
|
|
5332
5332
|
Auto = "Auto",
|
|
5333
5333
|
/**
|
|
5334
|
-
* Equivalent to the default configuration of {@link
|
|
5334
|
+
* Equivalent to the default configuration of {@link sap.ui.table.rowmodes.Fixed}
|
|
5335
5335
|
*/
|
|
5336
5336
|
Fixed = "Fixed",
|
|
5337
5337
|
/**
|
|
5338
|
-
* Equivalent to the default configuration of {@link
|
|
5338
|
+
* Equivalent to the default configuration of {@link sap.ui.table.rowmodes.Interactive}
|
|
5339
5339
|
*/
|
|
5340
5340
|
Interactive = "Interactive",
|
|
5341
5341
|
}
|
|
@@ -5641,8 +5641,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5641
5641
|
* This allows the Table control to handle huge amounts of data. Nevertheless, restrictions apply regarding
|
|
5642
5642
|
* the number of displayed columns. Keep the number as low as possible to improve performance. Due to the
|
|
5643
5643
|
* nature of tables, the used control for column templates also has a big influence on the performance.
|
|
5644
|
-
*
|
|
5645
|
-
*
|
|
5644
|
+
* Because of the described reuse of the controls during scrolling, all data-related changes must be based
|
|
5645
|
+
* on bindings. Static changes, such as calling mutator functions or defining a one-time binding, must be
|
|
5646
|
+
* avoided. The Table control relies completely on data binding, and its supported feature set
|
|
5647
|
+
* is tightly coupled to the data model and binding being used.
|
|
5646
5648
|
*/
|
|
5647
5649
|
export default class Table extends Control {
|
|
5648
5650
|
/**
|
|
@@ -7648,6 +7650,10 @@ declare module "sap/ui/table/Table" {
|
|
|
7648
7650
|
*
|
|
7649
7651
|
* Flag to enable or disable column reordering
|
|
7650
7652
|
*
|
|
7653
|
+
* **Note**: Column reordering is possible via drag&drop and keyboard shortcuts. Single-pointer alternative
|
|
7654
|
+
* is not provided out-of-the-box and should be implemented on application side. For example the {@link sap.m.p13n.Engine }
|
|
7655
|
+
* can be used, see the following sample: {@link https://ui5.sap.com/#/entity/sap.ui.table.Table/sample/sap.m.sample.p13n.EngineGridTable Personalization for grid table}.
|
|
7656
|
+
*
|
|
7651
7657
|
* Default value is `true`.
|
|
7652
7658
|
*
|
|
7653
7659
|
*
|
|
@@ -8540,6 +8546,10 @@ declare module "sap/ui/table/Table" {
|
|
|
8540
8546
|
*
|
|
8541
8547
|
* Flag to enable or disable column reordering
|
|
8542
8548
|
*
|
|
8549
|
+
* **Note**: Column reordering is possible via drag&drop and keyboard shortcuts. Single-pointer alternative
|
|
8550
|
+
* is not provided out-of-the-box and should be implemented on application side. For example the {@link sap.m.p13n.Engine }
|
|
8551
|
+
* can be used, see the following sample: {@link https://ui5.sap.com/#/entity/sap.ui.table.Table/sample/sap.m.sample.p13n.EngineGridTable Personalization for grid table}.
|
|
8552
|
+
*
|
|
8543
8553
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
8544
8554
|
*
|
|
8545
8555
|
* Default value is `true`.
|
|
@@ -9294,6 +9304,10 @@ declare module "sap/ui/table/Table" {
|
|
|
9294
9304
|
|
|
9295
9305
|
/**
|
|
9296
9306
|
* Flag to enable or disable column reordering
|
|
9307
|
+
*
|
|
9308
|
+
* **Note**: Column reordering is possible via drag&drop and keyboard shortcuts. Single-pointer alternative
|
|
9309
|
+
* is not provided out-of-the-box and should be implemented on application side. For example the {@link sap.m.p13n.Engine }
|
|
9310
|
+
* can be used, see the following sample: {@link https://ui5.sap.com/#/entity/sap.ui.table.Table/sample/sap.m.sample.p13n.EngineGridTable Personalization for grid table}.
|
|
9297
9311
|
*/
|
|
9298
9312
|
enableColumnReordering?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
9299
9313
|
|