@openui5/ts-types 1.98.0 → 1.101.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 +391 -88
- package/types/sap.m.d.ts +1678 -173
- package/types/sap.tnt.d.ts +1 -1
- package/types/sap.ui.codeeditor.d.ts +1 -1
- package/types/sap.ui.commons.d.ts +1 -1
- package/types/sap.ui.core.d.ts +1479 -758
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +11 -5
- package/types/sap.ui.integration.d.ts +29 -11
- package/types/sap.ui.layout.d.ts +4 -1
- package/types/sap.ui.mdc.d.ts +21 -1
- package/types/sap.ui.rta.d.ts +1 -1
- package/types/sap.ui.suite.d.ts +1 -1
- package/types/sap.ui.support.d.ts +10 -12
- package/types/sap.ui.table.d.ts +12 -42
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1 -1
- package/types/sap.ui.ux3.d.ts +1 -1
- package/types/sap.ui.webc.common.d.ts +7 -1
- package/types/sap.ui.webc.fiori.d.ts +2659 -755
- package/types/sap.ui.webc.main.d.ts +3303 -1032
- package/types/sap.uxap.d.ts +2 -2
package/types/sap.m.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.
|
|
1
|
+
// For Library Version: 1.101.0
|
|
2
2
|
|
|
3
3
|
declare namespace sap {
|
|
4
4
|
/**
|
|
@@ -185,7 +185,7 @@ declare namespace sap {
|
|
|
185
185
|
/**
|
|
186
186
|
* The image to update. If undefined, a new image will be created.
|
|
187
187
|
*/
|
|
188
|
-
|
|
188
|
+
oImage: sap.m.Image,
|
|
189
189
|
/**
|
|
190
190
|
* oImageControl's parentControl.
|
|
191
191
|
*/
|
|
@@ -1074,7 +1074,7 @@ declare namespace sap {
|
|
|
1074
1074
|
/**
|
|
1075
1075
|
* An array containing the personalization state that is represented by the `SelectionPanel`.
|
|
1076
1076
|
*/
|
|
1077
|
-
aP13nData: sap.m.p13n.Item
|
|
1077
|
+
aP13nData: sap.m.p13n.Item[]
|
|
1078
1078
|
): void;
|
|
1079
1079
|
/**
|
|
1080
1080
|
* Sets a new value for property {@link #getShowHeader showHeader}.
|
|
@@ -1101,6 +1101,13 @@ declare namespace sap {
|
|
|
1101
1101
|
class SortPanel /* was: sap.m.p13n.QueryPanel */ extends Object {
|
|
1102
1102
|
/**
|
|
1103
1103
|
* Constructor for a new `SortPanel`.
|
|
1104
|
+
*
|
|
1105
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1106
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1107
|
+
* of the syntax of the settings object.
|
|
1108
|
+
*
|
|
1109
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
|
|
1110
|
+
* sap.m.p13n.QueryPanel} can be used.
|
|
1104
1111
|
*/
|
|
1105
1112
|
constructor(
|
|
1106
1113
|
/**
|
|
@@ -1110,6 +1117,13 @@ declare namespace sap {
|
|
|
1110
1117
|
);
|
|
1111
1118
|
/**
|
|
1112
1119
|
* Constructor for a new `SortPanel`.
|
|
1120
|
+
*
|
|
1121
|
+
* Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
|
|
1122
|
+
* objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
|
|
1123
|
+
* of the syntax of the settings object.
|
|
1124
|
+
*
|
|
1125
|
+
* This class does not have its own settings, but all settings applicable to the base type {@link sap.m.p13n.QueryPanel#constructor
|
|
1126
|
+
* sap.m.p13n.QueryPanel} can be used.
|
|
1113
1127
|
*/
|
|
1114
1128
|
constructor(
|
|
1115
1129
|
/**
|
|
@@ -1165,15 +1179,15 @@ declare namespace sap {
|
|
|
1165
1179
|
/**
|
|
1166
1180
|
* The unique key of the item
|
|
1167
1181
|
*/
|
|
1168
|
-
name:
|
|
1182
|
+
name: string;
|
|
1169
1183
|
/**
|
|
1170
1184
|
* The label describing the personalization item
|
|
1171
1185
|
*/
|
|
1172
|
-
label:
|
|
1186
|
+
label: string;
|
|
1173
1187
|
/**
|
|
1174
1188
|
* Defines the grouping state of the personalization item
|
|
1175
1189
|
*/
|
|
1176
|
-
grouped:
|
|
1190
|
+
grouped: boolean;
|
|
1177
1191
|
};
|
|
1178
1192
|
|
|
1179
1193
|
/**
|
|
@@ -1201,19 +1215,19 @@ declare namespace sap {
|
|
|
1201
1215
|
/**
|
|
1202
1216
|
* The unique key of the item
|
|
1203
1217
|
*/
|
|
1204
|
-
name:
|
|
1218
|
+
name: string;
|
|
1205
1219
|
/**
|
|
1206
1220
|
* The label describing the personalization item
|
|
1207
1221
|
*/
|
|
1208
|
-
label:
|
|
1222
|
+
label: string;
|
|
1209
1223
|
/**
|
|
1210
1224
|
* Defines the sorting state of the personalization item
|
|
1211
1225
|
*/
|
|
1212
|
-
sorted:
|
|
1226
|
+
sorted: boolean;
|
|
1213
1227
|
/**
|
|
1214
1228
|
* Defines the descending state of the personalization item
|
|
1215
1229
|
*/
|
|
1216
|
-
descending:
|
|
1230
|
+
descending: boolean;
|
|
1217
1231
|
};
|
|
1218
1232
|
}
|
|
1219
1233
|
|
|
@@ -8062,6 +8076,25 @@ declare namespace sap {
|
|
|
8062
8076
|
*/
|
|
8063
8077
|
uploadUrl?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8064
8078
|
|
|
8079
|
+
/**
|
|
8080
|
+
* @SINCE 1.99.0
|
|
8081
|
+
*
|
|
8082
|
+
* If set to true, the button used for uploading files become invisible.
|
|
8083
|
+
*/
|
|
8084
|
+
uploadButtonInvisible?:
|
|
8085
|
+
| boolean
|
|
8086
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8087
|
+
|
|
8088
|
+
/**
|
|
8089
|
+
* @SINCE 1.100.0
|
|
8090
|
+
*
|
|
8091
|
+
* Allows the user to use the same name for a file while editing the file name. 'Same name' refers to an
|
|
8092
|
+
* already existing file name in the list.
|
|
8093
|
+
*/
|
|
8094
|
+
sameFilenameAllowed?:
|
|
8095
|
+
| boolean
|
|
8096
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8097
|
+
|
|
8065
8098
|
/**
|
|
8066
8099
|
* @SINCE 1.90
|
|
8067
8100
|
*
|
|
@@ -8071,6 +8104,25 @@ declare namespace sap {
|
|
|
8071
8104
|
| sap.m.upload.UploaderHttpRequestMethod
|
|
8072
8105
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8073
8106
|
|
|
8107
|
+
/**
|
|
8108
|
+
* Lets the user select multiple files from the same folder and then upload them.
|
|
8109
|
+
*
|
|
8110
|
+
* If multiple property is set to false, the control shows an error message if more than one file is chosen
|
|
8111
|
+
* for drag & drop.
|
|
8112
|
+
*/
|
|
8113
|
+
multiple?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8114
|
+
|
|
8115
|
+
/**
|
|
8116
|
+
* @SINCE 1.100.0
|
|
8117
|
+
*
|
|
8118
|
+
* Defines the selection mode of the control (e.g. None, SingleSelect, MultiSelect, SingleSelectLeft, SingleSelectMaster).
|
|
8119
|
+
* Since the UploadSet reacts like a list for attachments, the API is close to the ListBase Interface. sap.m.ListMode.Delete
|
|
8120
|
+
* mode is not supported and will be automatically set to sap.m.ListMode.None. In addition, if instant upload
|
|
8121
|
+
* is set to false the mode sap.m.ListMode.MultiSelect is not supported and will be automatically set to
|
|
8122
|
+
* sap.m.ListMode.None.
|
|
8123
|
+
*/
|
|
8124
|
+
mode?: sap.m.ListMode | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8125
|
+
|
|
8074
8126
|
/**
|
|
8075
8127
|
* Items representing files that have already been uploaded.
|
|
8076
8128
|
*/
|
|
@@ -8110,6 +8162,13 @@ declare namespace sap {
|
|
|
8110
8162
|
*/
|
|
8111
8163
|
afterItemAdded?: (oEvent: sap.ui.base.Event) => void;
|
|
8112
8164
|
|
|
8165
|
+
/**
|
|
8166
|
+
* @SINCE 1.100.0
|
|
8167
|
+
*
|
|
8168
|
+
* The event is triggered when the file name is changed.
|
|
8169
|
+
*/
|
|
8170
|
+
fileRenamed?: (oEvent: sap.ui.base.Event) => void;
|
|
8171
|
+
|
|
8113
8172
|
/**
|
|
8114
8173
|
* @SINCE 1.83
|
|
8115
8174
|
*
|
|
@@ -8201,6 +8260,20 @@ declare namespace sap {
|
|
|
8201
8260
|
* This event is fired simultaneously with the respective event in the inner {@link sap.m.List} control.
|
|
8202
8261
|
*/
|
|
8203
8262
|
selectionChanged?: (oEvent: sap.ui.base.Event) => void;
|
|
8263
|
+
|
|
8264
|
+
/**
|
|
8265
|
+
* @SINCE 1.99
|
|
8266
|
+
*
|
|
8267
|
+
* This event is fired when the user starts dragging an uploaded item.
|
|
8268
|
+
*/
|
|
8269
|
+
itemDragStart?: (oEvent: sap.ui.base.Event) => void;
|
|
8270
|
+
|
|
8271
|
+
/**
|
|
8272
|
+
* @SINCE 1.99
|
|
8273
|
+
*
|
|
8274
|
+
* This event is fired when an uploaded item is dropped on the new list position.
|
|
8275
|
+
*/
|
|
8276
|
+
itemDrop?: (oEvent: sap.ui.base.Event) => void;
|
|
8204
8277
|
}
|
|
8205
8278
|
|
|
8206
8279
|
interface $UploadSetItemSettings extends sap.ui.core.$ElementSettings {
|
|
@@ -8260,6 +8333,13 @@ declare namespace sap {
|
|
|
8260
8333
|
*/
|
|
8261
8334
|
uploadUrl?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8262
8335
|
|
|
8336
|
+
/**
|
|
8337
|
+
* @SINCE 1.100.0
|
|
8338
|
+
*
|
|
8339
|
+
* Defines the selected state of the UploadSetItem.
|
|
8340
|
+
*/
|
|
8341
|
+
selected?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
8342
|
+
|
|
8263
8343
|
/**
|
|
8264
8344
|
* Attributes of the item.
|
|
8265
8345
|
*/
|
|
@@ -9311,6 +9391,51 @@ declare namespace sap {
|
|
|
9311
9391
|
*/
|
|
9312
9392
|
oListener?: object
|
|
9313
9393
|
): this;
|
|
9394
|
+
/**
|
|
9395
|
+
* @SINCE 1.100.0
|
|
9396
|
+
*
|
|
9397
|
+
* Attaches event handler `fnFunction` to the {@link #event:fileRenamed fileRenamed} event of this `sap.m.upload.UploadSet`.
|
|
9398
|
+
*
|
|
9399
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9400
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9401
|
+
*
|
|
9402
|
+
* The event is triggered when the file name is changed.
|
|
9403
|
+
*/
|
|
9404
|
+
attachFileRenamed(
|
|
9405
|
+
/**
|
|
9406
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
9407
|
+
* object when firing the event
|
|
9408
|
+
*/
|
|
9409
|
+
oData: object,
|
|
9410
|
+
/**
|
|
9411
|
+
* The function to be called when the event occurs
|
|
9412
|
+
*/
|
|
9413
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9414
|
+
/**
|
|
9415
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9416
|
+
*/
|
|
9417
|
+
oListener?: object
|
|
9418
|
+
): this;
|
|
9419
|
+
/**
|
|
9420
|
+
* @SINCE 1.100.0
|
|
9421
|
+
*
|
|
9422
|
+
* Attaches event handler `fnFunction` to the {@link #event:fileRenamed fileRenamed} event of this `sap.m.upload.UploadSet`.
|
|
9423
|
+
*
|
|
9424
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9425
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9426
|
+
*
|
|
9427
|
+
* The event is triggered when the file name is changed.
|
|
9428
|
+
*/
|
|
9429
|
+
attachFileRenamed(
|
|
9430
|
+
/**
|
|
9431
|
+
* The function to be called when the event occurs
|
|
9432
|
+
*/
|
|
9433
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9434
|
+
/**
|
|
9435
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9436
|
+
*/
|
|
9437
|
+
oListener?: object
|
|
9438
|
+
): this;
|
|
9314
9439
|
/**
|
|
9315
9440
|
* Attaches event handler `fnFunction` to the {@link #event:fileSizeExceeded fileSizeExceeded} event of
|
|
9316
9441
|
* this `sap.m.upload.UploadSet`.
|
|
@@ -9413,6 +9538,96 @@ declare namespace sap {
|
|
|
9413
9538
|
*/
|
|
9414
9539
|
oListener?: object
|
|
9415
9540
|
): this;
|
|
9541
|
+
/**
|
|
9542
|
+
* @SINCE 1.99
|
|
9543
|
+
*
|
|
9544
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDragStart itemDragStart} event of this `sap.m.upload.UploadSet`.
|
|
9545
|
+
*
|
|
9546
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9547
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9548
|
+
*
|
|
9549
|
+
* This event is fired when the user starts dragging an uploaded item.
|
|
9550
|
+
*/
|
|
9551
|
+
attachItemDragStart(
|
|
9552
|
+
/**
|
|
9553
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
9554
|
+
* object when firing the event
|
|
9555
|
+
*/
|
|
9556
|
+
oData: object,
|
|
9557
|
+
/**
|
|
9558
|
+
* The function to be called when the event occurs
|
|
9559
|
+
*/
|
|
9560
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9561
|
+
/**
|
|
9562
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9563
|
+
*/
|
|
9564
|
+
oListener?: object
|
|
9565
|
+
): this;
|
|
9566
|
+
/**
|
|
9567
|
+
* @SINCE 1.99
|
|
9568
|
+
*
|
|
9569
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDragStart itemDragStart} event of this `sap.m.upload.UploadSet`.
|
|
9570
|
+
*
|
|
9571
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9572
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9573
|
+
*
|
|
9574
|
+
* This event is fired when the user starts dragging an uploaded item.
|
|
9575
|
+
*/
|
|
9576
|
+
attachItemDragStart(
|
|
9577
|
+
/**
|
|
9578
|
+
* The function to be called when the event occurs
|
|
9579
|
+
*/
|
|
9580
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9581
|
+
/**
|
|
9582
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9583
|
+
*/
|
|
9584
|
+
oListener?: object
|
|
9585
|
+
): this;
|
|
9586
|
+
/**
|
|
9587
|
+
* @SINCE 1.99
|
|
9588
|
+
*
|
|
9589
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
|
|
9590
|
+
*
|
|
9591
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9592
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9593
|
+
*
|
|
9594
|
+
* This event is fired when an uploaded item is dropped on the new list position.
|
|
9595
|
+
*/
|
|
9596
|
+
attachItemDrop(
|
|
9597
|
+
/**
|
|
9598
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
9599
|
+
* object when firing the event
|
|
9600
|
+
*/
|
|
9601
|
+
oData: object,
|
|
9602
|
+
/**
|
|
9603
|
+
* The function to be called when the event occurs
|
|
9604
|
+
*/
|
|
9605
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9606
|
+
/**
|
|
9607
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9608
|
+
*/
|
|
9609
|
+
oListener?: object
|
|
9610
|
+
): this;
|
|
9611
|
+
/**
|
|
9612
|
+
* @SINCE 1.99
|
|
9613
|
+
*
|
|
9614
|
+
* Attaches event handler `fnFunction` to the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
|
|
9615
|
+
*
|
|
9616
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
9617
|
+
* otherwise it will be bound to this `sap.m.upload.UploadSet` itself.
|
|
9618
|
+
*
|
|
9619
|
+
* This event is fired when an uploaded item is dropped on the new list position.
|
|
9620
|
+
*/
|
|
9621
|
+
attachItemDrop(
|
|
9622
|
+
/**
|
|
9623
|
+
* The function to be called when the event occurs
|
|
9624
|
+
*/
|
|
9625
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9626
|
+
/**
|
|
9627
|
+
* Context object to call the event handler with. Defaults to this `sap.m.upload.UploadSet` itself
|
|
9628
|
+
*/
|
|
9629
|
+
oListener?: object
|
|
9630
|
+
): this;
|
|
9416
9631
|
/**
|
|
9417
9632
|
* Attaches event handler `fnFunction` to the {@link #event:mediaTypeMismatch mediaTypeMismatch} event of
|
|
9418
9633
|
* this `sap.m.upload.UploadSet`.
|
|
@@ -9759,6 +9974,23 @@ declare namespace sap {
|
|
|
9759
9974
|
*/
|
|
9760
9975
|
oListener?: object
|
|
9761
9976
|
): this;
|
|
9977
|
+
/**
|
|
9978
|
+
* @SINCE 1.100.0
|
|
9979
|
+
*
|
|
9980
|
+
* Detaches event handler `fnFunction` from the {@link #event:fileRenamed fileRenamed} event of this `sap.m.upload.UploadSet`.
|
|
9981
|
+
*
|
|
9982
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
9983
|
+
*/
|
|
9984
|
+
detachFileRenamed(
|
|
9985
|
+
/**
|
|
9986
|
+
* The function to be called, when the event occurs
|
|
9987
|
+
*/
|
|
9988
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
9989
|
+
/**
|
|
9990
|
+
* Context object on which the given function had to be called
|
|
9991
|
+
*/
|
|
9992
|
+
oListener?: object
|
|
9993
|
+
): this;
|
|
9762
9994
|
/**
|
|
9763
9995
|
* Detaches event handler `fnFunction` from the {@link #event:fileSizeExceeded fileSizeExceeded} event of
|
|
9764
9996
|
* this `sap.m.upload.UploadSet`.
|
|
@@ -9791,6 +10023,41 @@ declare namespace sap {
|
|
|
9791
10023
|
*/
|
|
9792
10024
|
oListener?: object
|
|
9793
10025
|
): this;
|
|
10026
|
+
/**
|
|
10027
|
+
* @SINCE 1.99
|
|
10028
|
+
*
|
|
10029
|
+
* Detaches event handler `fnFunction` from the {@link #event:itemDragStart itemDragStart} event of this
|
|
10030
|
+
* `sap.m.upload.UploadSet`.
|
|
10031
|
+
*
|
|
10032
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
10033
|
+
*/
|
|
10034
|
+
detachItemDragStart(
|
|
10035
|
+
/**
|
|
10036
|
+
* The function to be called, when the event occurs
|
|
10037
|
+
*/
|
|
10038
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
10039
|
+
/**
|
|
10040
|
+
* Context object on which the given function had to be called
|
|
10041
|
+
*/
|
|
10042
|
+
oListener?: object
|
|
10043
|
+
): this;
|
|
10044
|
+
/**
|
|
10045
|
+
* @SINCE 1.99
|
|
10046
|
+
*
|
|
10047
|
+
* Detaches event handler `fnFunction` from the {@link #event:itemDrop itemDrop} event of this `sap.m.upload.UploadSet`.
|
|
10048
|
+
*
|
|
10049
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
10050
|
+
*/
|
|
10051
|
+
detachItemDrop(
|
|
10052
|
+
/**
|
|
10053
|
+
* The function to be called, when the event occurs
|
|
10054
|
+
*/
|
|
10055
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
10056
|
+
/**
|
|
10057
|
+
* Context object on which the given function had to be called
|
|
10058
|
+
*/
|
|
10059
|
+
oListener?: object
|
|
10060
|
+
): this;
|
|
9794
10061
|
/**
|
|
9795
10062
|
* Detaches event handler `fnFunction` from the {@link #event:mediaTypeMismatch mediaTypeMismatch} event
|
|
9796
10063
|
* of this `sap.m.upload.UploadSet`.
|
|
@@ -10000,6 +10267,22 @@ declare namespace sap {
|
|
|
10000
10267
|
item?: sap.m.upload.UploadSetItem;
|
|
10001
10268
|
}
|
|
10002
10269
|
): this;
|
|
10270
|
+
/**
|
|
10271
|
+
* @SINCE 1.100.0
|
|
10272
|
+
*
|
|
10273
|
+
* Fires event {@link #event:fileRenamed fileRenamed} to attached listeners.
|
|
10274
|
+
*/
|
|
10275
|
+
fireFileRenamed(
|
|
10276
|
+
/**
|
|
10277
|
+
* Parameters to pass along with the event
|
|
10278
|
+
*/
|
|
10279
|
+
mParameters?: {
|
|
10280
|
+
/**
|
|
10281
|
+
* The renamed UI element as an UploadSetItem.
|
|
10282
|
+
*/
|
|
10283
|
+
item?: sap.m.upload.UploadSetItem;
|
|
10284
|
+
}
|
|
10285
|
+
): this;
|
|
10003
10286
|
/**
|
|
10004
10287
|
* Fires event {@link #event:fileSizeExceeded fileSizeExceeded} to attached listeners.
|
|
10005
10288
|
*/
|
|
@@ -10028,6 +10311,28 @@ declare namespace sap {
|
|
|
10028
10311
|
item?: sap.m.upload.UploadSetItem;
|
|
10029
10312
|
}
|
|
10030
10313
|
): this;
|
|
10314
|
+
/**
|
|
10315
|
+
* @SINCE 1.99
|
|
10316
|
+
*
|
|
10317
|
+
* Fires event {@link #event:itemDragStart itemDragStart} to attached listeners.
|
|
10318
|
+
*/
|
|
10319
|
+
fireItemDragStart(
|
|
10320
|
+
/**
|
|
10321
|
+
* Parameters to pass along with the event
|
|
10322
|
+
*/
|
|
10323
|
+
mParameters?: object
|
|
10324
|
+
): this;
|
|
10325
|
+
/**
|
|
10326
|
+
* @SINCE 1.99
|
|
10327
|
+
*
|
|
10328
|
+
* Fires event {@link #event:itemDrop itemDrop} to attached listeners.
|
|
10329
|
+
*/
|
|
10330
|
+
fireItemDrop(
|
|
10331
|
+
/**
|
|
10332
|
+
* Parameters to pass along with the event
|
|
10333
|
+
*/
|
|
10334
|
+
mParameters?: object
|
|
10335
|
+
): this;
|
|
10031
10336
|
/**
|
|
10032
10337
|
* Fires event {@link #event:mediaTypeMismatch mediaTypeMismatch} to attached listeners.
|
|
10033
10338
|
*/
|
|
@@ -10199,6 +10504,31 @@ declare namespace sap {
|
|
|
10199
10504
|
* If this property is not set, any file can be uploaded.
|
|
10200
10505
|
*/
|
|
10201
10506
|
getMediaTypes(): string[];
|
|
10507
|
+
/**
|
|
10508
|
+
* @SINCE 1.100.0
|
|
10509
|
+
*
|
|
10510
|
+
* Gets current value of property {@link #getMode mode}.
|
|
10511
|
+
*
|
|
10512
|
+
* Defines the selection mode of the control (e.g. None, SingleSelect, MultiSelect, SingleSelectLeft, SingleSelectMaster).
|
|
10513
|
+
* Since the UploadSet reacts like a list for attachments, the API is close to the ListBase Interface. sap.m.ListMode.Delete
|
|
10514
|
+
* mode is not supported and will be automatically set to sap.m.ListMode.None. In addition, if instant upload
|
|
10515
|
+
* is set to false the mode sap.m.ListMode.MultiSelect is not supported and will be automatically set to
|
|
10516
|
+
* sap.m.ListMode.None.
|
|
10517
|
+
*
|
|
10518
|
+
* Default value is `MultiSelect`.
|
|
10519
|
+
*/
|
|
10520
|
+
getMode(): sap.m.ListMode;
|
|
10521
|
+
/**
|
|
10522
|
+
* Gets current value of property {@link #getMultiple multiple}.
|
|
10523
|
+
*
|
|
10524
|
+
* Lets the user select multiple files from the same folder and then upload them.
|
|
10525
|
+
*
|
|
10526
|
+
* If multiple property is set to false, the control shows an error message if more than one file is chosen
|
|
10527
|
+
* for drag & drop.
|
|
10528
|
+
*
|
|
10529
|
+
* Default value is `false`.
|
|
10530
|
+
*/
|
|
10531
|
+
getMultiple(): boolean;
|
|
10202
10532
|
/**
|
|
10203
10533
|
* Gets current value of property {@link #getNoDataDescription noDataDescription}.
|
|
10204
10534
|
*
|
|
@@ -10211,6 +10541,29 @@ declare namespace sap {
|
|
|
10211
10541
|
* Defines custom text for the 'No data' text label.
|
|
10212
10542
|
*/
|
|
10213
10543
|
getNoDataText(): string;
|
|
10544
|
+
/**
|
|
10545
|
+
* @SINCE 1.100.0
|
|
10546
|
+
*
|
|
10547
|
+
* Gets current value of property {@link #getSameFilenameAllowed sameFilenameAllowed}.
|
|
10548
|
+
*
|
|
10549
|
+
* Allows the user to use the same name for a file while editing the file name. 'Same name' refers to an
|
|
10550
|
+
* already existing file name in the list.
|
|
10551
|
+
*
|
|
10552
|
+
* Default value is `false`.
|
|
10553
|
+
*/
|
|
10554
|
+
getSameFilenameAllowed(): boolean;
|
|
10555
|
+
/**
|
|
10556
|
+
* @SINCE 1.100.0
|
|
10557
|
+
*
|
|
10558
|
+
* Retrieves the currently selected UploadSetItem.
|
|
10559
|
+
*/
|
|
10560
|
+
getSelectedItem(): sap.m.upload.UploadSetItem | null;
|
|
10561
|
+
/**
|
|
10562
|
+
* @SINCE 1.100.0
|
|
10563
|
+
*
|
|
10564
|
+
* Returns an array containing the selected UploadSetItems.
|
|
10565
|
+
*/
|
|
10566
|
+
getSelectedItems(): sap.m.upload.UploadSetItem[];
|
|
10214
10567
|
/**
|
|
10215
10568
|
* Gets current value of property {@link #getShowIcons showIcons}.
|
|
10216
10569
|
*
|
|
@@ -10233,6 +10586,16 @@ declare namespace sap {
|
|
|
10233
10586
|
* Main toolbar of the `UploadSet` control.
|
|
10234
10587
|
*/
|
|
10235
10588
|
getToolbar(): sap.m.OverflowToolbar;
|
|
10589
|
+
/**
|
|
10590
|
+
* @SINCE 1.99.0
|
|
10591
|
+
*
|
|
10592
|
+
* Gets current value of property {@link #getUploadButtonInvisible uploadButtonInvisible}.
|
|
10593
|
+
*
|
|
10594
|
+
* If set to true, the button used for uploading files become invisible.
|
|
10595
|
+
*
|
|
10596
|
+
* Default value is `false`.
|
|
10597
|
+
*/
|
|
10598
|
+
getUploadButtonInvisible(): boolean;
|
|
10236
10599
|
/**
|
|
10237
10600
|
* Gets current value of property {@link #getUploadEnabled uploadEnabled}.
|
|
10238
10601
|
*
|
|
@@ -10383,6 +10746,12 @@ declare namespace sap {
|
|
|
10383
10746
|
*/
|
|
10384
10747
|
vItem: int | string | sap.m.upload.UploadSetItem
|
|
10385
10748
|
): sap.m.upload.UploadSetItem;
|
|
10749
|
+
/**
|
|
10750
|
+
* @SINCE 1.100.0
|
|
10751
|
+
*
|
|
10752
|
+
* Select all items in "MultiSelection" mode.
|
|
10753
|
+
*/
|
|
10754
|
+
selectAll(): this;
|
|
10386
10755
|
/**
|
|
10387
10756
|
* Sets a new value for property {@link #getFileTypes fileTypes}.
|
|
10388
10757
|
*
|
|
@@ -10472,6 +10841,45 @@ declare namespace sap {
|
|
|
10472
10841
|
*/
|
|
10473
10842
|
sMediaTypes?: string[]
|
|
10474
10843
|
): this;
|
|
10844
|
+
/**
|
|
10845
|
+
* @SINCE 1.100.0
|
|
10846
|
+
*
|
|
10847
|
+
* Sets a new value for property {@link #getMode mode}.
|
|
10848
|
+
*
|
|
10849
|
+
* Defines the selection mode of the control (e.g. None, SingleSelect, MultiSelect, SingleSelectLeft, SingleSelectMaster).
|
|
10850
|
+
* Since the UploadSet reacts like a list for attachments, the API is close to the ListBase Interface. sap.m.ListMode.Delete
|
|
10851
|
+
* mode is not supported and will be automatically set to sap.m.ListMode.None. In addition, if instant upload
|
|
10852
|
+
* is set to false the mode sap.m.ListMode.MultiSelect is not supported and will be automatically set to
|
|
10853
|
+
* sap.m.ListMode.None.
|
|
10854
|
+
*
|
|
10855
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10856
|
+
*
|
|
10857
|
+
* Default value is `MultiSelect`.
|
|
10858
|
+
*/
|
|
10859
|
+
setMode(
|
|
10860
|
+
/**
|
|
10861
|
+
* New value for property `mode`
|
|
10862
|
+
*/
|
|
10863
|
+
sMode?: sap.m.ListMode
|
|
10864
|
+
): this;
|
|
10865
|
+
/**
|
|
10866
|
+
* Sets a new value for property {@link #getMultiple multiple}.
|
|
10867
|
+
*
|
|
10868
|
+
* Lets the user select multiple files from the same folder and then upload them.
|
|
10869
|
+
*
|
|
10870
|
+
* If multiple property is set to false, the control shows an error message if more than one file is chosen
|
|
10871
|
+
* for drag & drop.
|
|
10872
|
+
*
|
|
10873
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10874
|
+
*
|
|
10875
|
+
* Default value is `false`.
|
|
10876
|
+
*/
|
|
10877
|
+
setMultiple(
|
|
10878
|
+
/**
|
|
10879
|
+
* New value for property `multiple`
|
|
10880
|
+
*/
|
|
10881
|
+
bMultiple?: boolean
|
|
10882
|
+
): this;
|
|
10475
10883
|
/**
|
|
10476
10884
|
* Sets a new value for property {@link #getNoDataDescription noDataDescription}.
|
|
10477
10885
|
*
|
|
@@ -10498,6 +10906,55 @@ declare namespace sap {
|
|
|
10498
10906
|
*/
|
|
10499
10907
|
sNoDataText?: string
|
|
10500
10908
|
): this;
|
|
10909
|
+
/**
|
|
10910
|
+
* @SINCE 1.100.0
|
|
10911
|
+
*
|
|
10912
|
+
* Sets a new value for property {@link #getSameFilenameAllowed sameFilenameAllowed}.
|
|
10913
|
+
*
|
|
10914
|
+
* Allows the user to use the same name for a file while editing the file name. 'Same name' refers to an
|
|
10915
|
+
* already existing file name in the list.
|
|
10916
|
+
*
|
|
10917
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
10918
|
+
*
|
|
10919
|
+
* Default value is `false`.
|
|
10920
|
+
*/
|
|
10921
|
+
setSameFilenameAllowed(
|
|
10922
|
+
/**
|
|
10923
|
+
* New value for property `sameFilenameAllowed`
|
|
10924
|
+
*/
|
|
10925
|
+
bSameFilenameAllowed?: boolean
|
|
10926
|
+
): this;
|
|
10927
|
+
/**
|
|
10928
|
+
* @SINCE 1.100.0
|
|
10929
|
+
*
|
|
10930
|
+
* Selects or deselects the given list item.
|
|
10931
|
+
*/
|
|
10932
|
+
setSelectedItem(
|
|
10933
|
+
/**
|
|
10934
|
+
* The item whose selection is to be changed. This parameter is mandatory.
|
|
10935
|
+
*/
|
|
10936
|
+
uploadSetItem: sap.m.upload.UploadSetItem,
|
|
10937
|
+
/**
|
|
10938
|
+
* The selection state of the item.
|
|
10939
|
+
*/
|
|
10940
|
+
select?: boolean
|
|
10941
|
+
): this;
|
|
10942
|
+
/**
|
|
10943
|
+
* @SINCE 1.100.0
|
|
10944
|
+
*
|
|
10945
|
+
* Sets an UploadSetItem to be selected by ID. In single selection mode, the method removes the previous
|
|
10946
|
+
* selection.
|
|
10947
|
+
*/
|
|
10948
|
+
setSelectedItemById(
|
|
10949
|
+
/**
|
|
10950
|
+
* The ID of the item whose selection is to be changed.
|
|
10951
|
+
*/
|
|
10952
|
+
id: string,
|
|
10953
|
+
/**
|
|
10954
|
+
* The selection state of the item.
|
|
10955
|
+
*/
|
|
10956
|
+
select?: boolean
|
|
10957
|
+
): this;
|
|
10501
10958
|
/**
|
|
10502
10959
|
* Sets a new value for property {@link #getShowIcons showIcons}.
|
|
10503
10960
|
*
|
|
@@ -10537,6 +10994,23 @@ declare namespace sap {
|
|
|
10537
10994
|
*/
|
|
10538
10995
|
oToolbar: sap.m.OverflowToolbar
|
|
10539
10996
|
): this;
|
|
10997
|
+
/**
|
|
10998
|
+
* @SINCE 1.99.0
|
|
10999
|
+
*
|
|
11000
|
+
* Sets a new value for property {@link #getUploadButtonInvisible uploadButtonInvisible}.
|
|
11001
|
+
*
|
|
11002
|
+
* If set to true, the button used for uploading files become invisible.
|
|
11003
|
+
*
|
|
11004
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11005
|
+
*
|
|
11006
|
+
* Default value is `false`.
|
|
11007
|
+
*/
|
|
11008
|
+
setUploadButtonInvisible(
|
|
11009
|
+
/**
|
|
11010
|
+
* New value for property `uploadButtonInvisible`
|
|
11011
|
+
*/
|
|
11012
|
+
bUploadButtonInvisible?: boolean
|
|
11013
|
+
): this;
|
|
10540
11014
|
/**
|
|
10541
11015
|
* Sets a new value for property {@link #getUploadEnabled uploadEnabled}.
|
|
10542
11016
|
*
|
|
@@ -10912,6 +11386,16 @@ declare namespace sap {
|
|
|
10912
11386
|
* Specifies the MIME type of the file.
|
|
10913
11387
|
*/
|
|
10914
11388
|
getMediaType(): string;
|
|
11389
|
+
/**
|
|
11390
|
+
* @SINCE 1.100.0
|
|
11391
|
+
*
|
|
11392
|
+
* Gets current value of property {@link #getSelected selected}.
|
|
11393
|
+
*
|
|
11394
|
+
* Defines the selected state of the UploadSetItem.
|
|
11395
|
+
*
|
|
11396
|
+
* Default value is `false`.
|
|
11397
|
+
*/
|
|
11398
|
+
getSelected(): boolean;
|
|
10915
11399
|
/**
|
|
10916
11400
|
* Gets content of aggregation {@link #getStatuses statuses}.
|
|
10917
11401
|
*
|
|
@@ -11202,6 +11686,23 @@ declare namespace sap {
|
|
|
11202
11686
|
*/
|
|
11203
11687
|
iProgress: int
|
|
11204
11688
|
): this;
|
|
11689
|
+
/**
|
|
11690
|
+
* @SINCE 1.100.0
|
|
11691
|
+
*
|
|
11692
|
+
* Sets a new value for property {@link #getSelected selected}.
|
|
11693
|
+
*
|
|
11694
|
+
* Defines the selected state of the UploadSetItem.
|
|
11695
|
+
*
|
|
11696
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
11697
|
+
*
|
|
11698
|
+
* Default value is `false`.
|
|
11699
|
+
*/
|
|
11700
|
+
setSelected(
|
|
11701
|
+
/**
|
|
11702
|
+
* New value for property `selected`
|
|
11703
|
+
*/
|
|
11704
|
+
bSelected?: boolean
|
|
11705
|
+
): this;
|
|
11205
11706
|
/**
|
|
11206
11707
|
* Sets a new value for property {@link #getThumbnailUrl thumbnailUrl}.
|
|
11207
11708
|
*
|
|
@@ -11823,6 +12324,24 @@ declare namespace sap {
|
|
|
11823
12324
|
*/
|
|
11824
12325
|
decorative?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
11825
12326
|
|
|
12327
|
+
/**
|
|
12328
|
+
* @SINCE 1.99.0
|
|
12329
|
+
*
|
|
12330
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
12331
|
+
*
|
|
12332
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
12333
|
+
* value.
|
|
12334
|
+
*
|
|
12335
|
+
* NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
|
|
12336
|
+
* to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
|
|
12337
|
+
* if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
|
|
12338
|
+
* Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
|
|
12339
|
+
* on overlay over the application.
|
|
12340
|
+
*/
|
|
12341
|
+
ariaHasPopup?:
|
|
12342
|
+
| sap.ui.core.aria.HasPopup
|
|
12343
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
12344
|
+
|
|
11826
12345
|
/**
|
|
11827
12346
|
* A `sap.m.LightBox` instance, that will be opened automatically when the user interacts with the `Avatar`
|
|
11828
12347
|
* control.
|
|
@@ -13312,6 +13831,23 @@ declare namespace sap {
|
|
|
13312
13831
|
showCurrentTimeButton?:
|
|
13313
13832
|
| boolean
|
|
13314
13833
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13834
|
+
|
|
13835
|
+
/**
|
|
13836
|
+
* @SINCE 1.99
|
|
13837
|
+
*
|
|
13838
|
+
* Determines whether to show the timezone or not.
|
|
13839
|
+
*/
|
|
13840
|
+
showTimezone?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13841
|
+
|
|
13842
|
+
/**
|
|
13843
|
+
* @SINCE 1.99
|
|
13844
|
+
*
|
|
13845
|
+
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
13846
|
+
* property string is treated as if it is formatted in this timezone. However, the `dateValue` property
|
|
13847
|
+
* is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
|
|
13848
|
+
* it is adjusted when the `timezone` changes.
|
|
13849
|
+
*/
|
|
13850
|
+
timezone?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
13315
13851
|
}
|
|
13316
13852
|
|
|
13317
13853
|
interface $DialogSettings extends sap.ui.core.$ControlSettings {
|
|
@@ -15122,6 +15658,14 @@ declare namespace sap {
|
|
|
15122
15658
|
| sap.ui.core.CSSSize
|
|
15123
15659
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15124
15660
|
|
|
15661
|
+
/**
|
|
15662
|
+
* @SINCE 1.99
|
|
15663
|
+
* @EXPERIMENTAL (since 1.99)
|
|
15664
|
+
*
|
|
15665
|
+
* Enables grid layout in mobile view.
|
|
15666
|
+
*/
|
|
15667
|
+
gridLayout?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
15668
|
+
|
|
15125
15669
|
/**
|
|
15126
15670
|
* Content to add to HeaderContainer.
|
|
15127
15671
|
*/
|
|
@@ -16423,7 +16967,7 @@ declare namespace sap {
|
|
|
16423
16967
|
showColon?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16424
16968
|
|
|
16425
16969
|
/**
|
|
16426
|
-
* Association to the
|
|
16970
|
+
* Association to the labelled control. By default, the label sets the for attribute to the ID of the labelled
|
|
16427
16971
|
* control. This can be changed by implementing the function getIdForLabel on the labelled control.
|
|
16428
16972
|
*/
|
|
16429
16973
|
labelFor?: sap.ui.core.Control | string;
|
|
@@ -16669,7 +17213,9 @@ declare namespace sap {
|
|
|
16669
17213
|
showUnread?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16670
17214
|
|
|
16671
17215
|
/**
|
|
16672
|
-
* This text is displayed
|
|
17216
|
+
* This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
|
|
17217
|
+
* a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
|
|
17218
|
+
* is undefined or set to null, the `noDataText` property is used instead.
|
|
16673
17219
|
*/
|
|
16674
17220
|
noDataText?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
16675
17221
|
|
|
@@ -16859,6 +17405,18 @@ declare namespace sap {
|
|
|
16859
17405
|
*/
|
|
16860
17406
|
contextMenu?: sap.ui.core.IContextMenu;
|
|
16861
17407
|
|
|
17408
|
+
/**
|
|
17409
|
+
* @SINCE 1.101
|
|
17410
|
+
*
|
|
17411
|
+
* Defines the custom visualization if there is no data available. **Note:** If both a `noDataText` property
|
|
17412
|
+
* and a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
|
|
17413
|
+
* is undefined or set to null, the `noDataText` property is used instead.
|
|
17414
|
+
*/
|
|
17415
|
+
noData?:
|
|
17416
|
+
| string
|
|
17417
|
+
| sap.ui.core.Control
|
|
17418
|
+
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17419
|
+
|
|
16862
17420
|
/**
|
|
16863
17421
|
* @SINCE 1.28.0
|
|
16864
17422
|
*
|
|
@@ -17148,6 +17706,10 @@ declare namespace sap {
|
|
|
17148
17706
|
/**
|
|
17149
17707
|
* Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
|
|
17150
17708
|
* from the icon font.
|
|
17709
|
+
*
|
|
17710
|
+
* Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
|
|
17711
|
+
* icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
|
|
17712
|
+
* selection since there is not enough space for a text.
|
|
17151
17713
|
*/
|
|
17152
17714
|
icon?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17153
17715
|
|
|
@@ -17485,6 +18047,8 @@ declare namespace sap {
|
|
|
17485
18047
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
17486
18048
|
|
|
17487
18049
|
/**
|
|
18050
|
+
* @SINCE 1.73
|
|
18051
|
+
*
|
|
17488
18052
|
* Defines whether the MessageItems are grouped or not.
|
|
17489
18053
|
*/
|
|
17490
18054
|
groupItems?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
@@ -18275,6 +18839,9 @@ declare namespace sap {
|
|
|
18275
18839
|
/**
|
|
18276
18840
|
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
18277
18841
|
* icon is not available, or cannot be displayed.
|
|
18842
|
+
*
|
|
18843
|
+
* **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
|
|
18844
|
+
* decoration only.
|
|
18278
18845
|
*/
|
|
18279
18846
|
iconAlt?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
18280
18847
|
|
|
@@ -22424,6 +22991,8 @@ declare namespace sap {
|
|
|
22424
22991
|
* - If invalid or none `selectedKey` is used, the first item is being selected.
|
|
22425
22992
|
* - Invalid or missing `selectedKey` leads to severe functional issues in `sap.ui.table.Table`, when
|
|
22426
22993
|
* the `sap.m.Select` is used inside a `sap.ui.table.Table` column.
|
|
22994
|
+
* - If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
|
|
22995
|
+
* property is set to `true`.
|
|
22427
22996
|
*/
|
|
22428
22997
|
selectedKey?: string | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
22429
22998
|
|
|
@@ -22588,6 +23157,18 @@ declare namespace sap {
|
|
|
22588
23157
|
* - The item is pressed
|
|
22589
23158
|
*/
|
|
22590
23159
|
change?: (oEvent: sap.ui.base.Event) => void;
|
|
23160
|
+
|
|
23161
|
+
/**
|
|
23162
|
+
* @SINCE 1.100
|
|
23163
|
+
*
|
|
23164
|
+
* Fires when the user navigates through the `Select` items. It's also fired on revert of the currently
|
|
23165
|
+
* selected item.
|
|
23166
|
+
*
|
|
23167
|
+
* **Note:** Revert occurs in some of the following actions:
|
|
23168
|
+
* - The user clicks outside of the `Select`
|
|
23169
|
+
* - The Escape key is pressed
|
|
23170
|
+
*/
|
|
23171
|
+
liveChange?: (oEvent: sap.ui.base.Event) => void;
|
|
22591
23172
|
}
|
|
22592
23173
|
|
|
22593
23174
|
interface $SelectDialogSettings extends sap.m.$SelectDialogBaseSettings {
|
|
@@ -23128,6 +23709,15 @@ declare namespace sap {
|
|
|
23128
23709
|
| sap.m.PlanningCalendarStickyMode
|
|
23129
23710
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23130
23711
|
|
|
23712
|
+
/**
|
|
23713
|
+
* @SINCE 1.99
|
|
23714
|
+
*
|
|
23715
|
+
* Determines scale factor for the appointments.
|
|
23716
|
+
*
|
|
23717
|
+
* Acceptable range is from 1 to 6.
|
|
23718
|
+
*/
|
|
23719
|
+
scaleFactor?: float | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
23720
|
+
|
|
23131
23721
|
/**
|
|
23132
23722
|
* @SINCE 1.64
|
|
23133
23723
|
*
|
|
@@ -24957,6 +25547,13 @@ declare namespace sap {
|
|
|
24957
25547
|
| sap.ui.core.Priority
|
|
24958
25548
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
24959
25549
|
|
|
25550
|
+
/**
|
|
25551
|
+
* @SINCE 1.100.0
|
|
25552
|
+
*
|
|
25553
|
+
* The load status.
|
|
25554
|
+
*/
|
|
25555
|
+
state?: sap.m.LoadState | sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
25556
|
+
|
|
24960
25557
|
/**
|
|
24961
25558
|
* The switchable view that depends on the tile type.
|
|
24962
25559
|
*/
|
|
@@ -26274,7 +26871,7 @@ declare namespace sap {
|
|
|
26274
26871
|
| sap.ui.base.ManagedObject.PropertyBindingInfo;
|
|
26275
26872
|
|
|
26276
26873
|
/**
|
|
26277
|
-
* @
|
|
26874
|
+
* @SINCE 1.84
|
|
26278
26875
|
*
|
|
26279
26876
|
* Defines how the steps of the Wizard would be visualized.
|
|
26280
26877
|
*/
|
|
@@ -26304,6 +26901,14 @@ declare namespace sap {
|
|
|
26304
26901
|
*/
|
|
26305
26902
|
stepActivate?: (oEvent: sap.ui.base.Event) => void;
|
|
26306
26903
|
|
|
26904
|
+
/**
|
|
26905
|
+
* @SINCE 1.101
|
|
26906
|
+
*
|
|
26907
|
+
* This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
|
|
26908
|
+
* or scrolling through the steps.
|
|
26909
|
+
*/
|
|
26910
|
+
navigationChange?: (oEvent: sap.ui.base.Event) => void;
|
|
26911
|
+
|
|
26307
26912
|
/**
|
|
26308
26913
|
* The complete event is fired when the user clicks the finish button of the Wizard. The finish button is
|
|
26309
26914
|
* only available on the last step of the Wizard.
|
|
@@ -26504,6 +27109,494 @@ declare namespace sap {
|
|
|
26504
27109
|
}
|
|
26505
27110
|
const IllustrationPool: IllustrationPool;
|
|
26506
27111
|
|
|
27112
|
+
/**
|
|
27113
|
+
* InputBase renderer.
|
|
27114
|
+
*/
|
|
27115
|
+
interface InputBaseRenderer {
|
|
27116
|
+
/**
|
|
27117
|
+
* This method is reserved for derived class to set width inline style
|
|
27118
|
+
*/
|
|
27119
|
+
addControlWidth(
|
|
27120
|
+
/**
|
|
27121
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27122
|
+
*/
|
|
27123
|
+
oRm: sap.ui.core.RenderManager,
|
|
27124
|
+
/**
|
|
27125
|
+
* An object representation of the control that should be rendered.
|
|
27126
|
+
*/
|
|
27127
|
+
oControl: sap.m.InputBase
|
|
27128
|
+
): void;
|
|
27129
|
+
/**
|
|
27130
|
+
* Add cursor class to input container.
|
|
27131
|
+
*/
|
|
27132
|
+
addCursorClass(
|
|
27133
|
+
/**
|
|
27134
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27135
|
+
*/
|
|
27136
|
+
oRm: sap.ui.core.RenderManager,
|
|
27137
|
+
/**
|
|
27138
|
+
* An object representation of the control that should be rendered.
|
|
27139
|
+
*/
|
|
27140
|
+
oControl: sap.m.InputBase
|
|
27141
|
+
): void;
|
|
27142
|
+
/**
|
|
27143
|
+
* This method is reserved for derived classes to add extra classes for input element.
|
|
27144
|
+
*/
|
|
27145
|
+
addInnerClasses(
|
|
27146
|
+
/**
|
|
27147
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27148
|
+
*/
|
|
27149
|
+
oRm: sap.ui.core.RenderManager,
|
|
27150
|
+
/**
|
|
27151
|
+
* An object representation of the control that should be rendered.
|
|
27152
|
+
*/
|
|
27153
|
+
oControl: sap.m.InputBase
|
|
27154
|
+
): void;
|
|
27155
|
+
/**
|
|
27156
|
+
* This method is reserved for derived classes to add extra styles for input element.
|
|
27157
|
+
*/
|
|
27158
|
+
addInnerStyles(
|
|
27159
|
+
/**
|
|
27160
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27161
|
+
*/
|
|
27162
|
+
oRm: sap.ui.core.RenderManager,
|
|
27163
|
+
/**
|
|
27164
|
+
* An object representation of the control that should be rendered.
|
|
27165
|
+
*/
|
|
27166
|
+
oControl: sap.m.InputBase
|
|
27167
|
+
): void;
|
|
27168
|
+
/**
|
|
27169
|
+
* This method is reserved for derived classes to add extra classes for input container.
|
|
27170
|
+
*/
|
|
27171
|
+
addOuterClasses(
|
|
27172
|
+
/**
|
|
27173
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27174
|
+
*/
|
|
27175
|
+
oRm: sap.ui.core.RenderManager,
|
|
27176
|
+
/**
|
|
27177
|
+
* An object representation of the control that should be rendered.
|
|
27178
|
+
*/
|
|
27179
|
+
oControl: sap.m.InputBase
|
|
27180
|
+
): void;
|
|
27181
|
+
/**
|
|
27182
|
+
* This method is reserved for derived class to add extra styles for input container.
|
|
27183
|
+
*/
|
|
27184
|
+
addOuterStyles(
|
|
27185
|
+
/**
|
|
27186
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27187
|
+
*/
|
|
27188
|
+
oRm: sap.ui.core.RenderManager,
|
|
27189
|
+
/**
|
|
27190
|
+
* An object representation of the control that should be rendered.
|
|
27191
|
+
*/
|
|
27192
|
+
oControl: sap.m.InputBase
|
|
27193
|
+
): void;
|
|
27194
|
+
/**
|
|
27195
|
+
* Add a padding class to input container. May be overwritten by subclasses.
|
|
27196
|
+
*/
|
|
27197
|
+
addPaddingClass(
|
|
27198
|
+
/**
|
|
27199
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27200
|
+
*/
|
|
27201
|
+
oRm: sap.ui.core.RenderManager,
|
|
27202
|
+
/**
|
|
27203
|
+
* An object representation of the control that should be rendered.
|
|
27204
|
+
*/
|
|
27205
|
+
oControl: sap.m.InputBase
|
|
27206
|
+
): void;
|
|
27207
|
+
/**
|
|
27208
|
+
* @deprecated
|
|
27209
|
+
*
|
|
27210
|
+
* Adds custom placeholder classes, if native placeholder is not used. To be overwritten by subclasses.
|
|
27211
|
+
* Note that this method should not be used anymore as native placeholder is used on all browsers
|
|
27212
|
+
*/
|
|
27213
|
+
addPlaceholderClasses(
|
|
27214
|
+
/**
|
|
27215
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27216
|
+
*/
|
|
27217
|
+
oRm: sap.ui.core.RenderManager,
|
|
27218
|
+
/**
|
|
27219
|
+
* An object representation of the control that should be rendered.
|
|
27220
|
+
*/
|
|
27221
|
+
oControl: sap.m.InputBase
|
|
27222
|
+
): void;
|
|
27223
|
+
/**
|
|
27224
|
+
* @deprecated
|
|
27225
|
+
*
|
|
27226
|
+
* This method is reserved for derived classes to add extra styles for the placeholder, if rendered as label.
|
|
27227
|
+
*/
|
|
27228
|
+
addPlaceholderStyles(
|
|
27229
|
+
/**
|
|
27230
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27231
|
+
*/
|
|
27232
|
+
oRm: sap.ui.core.RenderManager,
|
|
27233
|
+
/**
|
|
27234
|
+
* An object representation of the control that should be rendered.
|
|
27235
|
+
*/
|
|
27236
|
+
oControl: sap.m.InputBase
|
|
27237
|
+
): void;
|
|
27238
|
+
/**
|
|
27239
|
+
* Add the CSS value state classes to the control's root element using the provided {@link sap.ui.core.RenderManager}.
|
|
27240
|
+
* To be overwritten by subclasses.
|
|
27241
|
+
*/
|
|
27242
|
+
addValueStateClasses(
|
|
27243
|
+
/**
|
|
27244
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27245
|
+
*/
|
|
27246
|
+
oRm: sap.ui.core.RenderManager,
|
|
27247
|
+
/**
|
|
27248
|
+
* An object representation of the control that should be rendered.
|
|
27249
|
+
*/
|
|
27250
|
+
oControl: sap.m.InputBase
|
|
27251
|
+
): void;
|
|
27252
|
+
/**
|
|
27253
|
+
* This method is reserved for derived classes to add extra styles for input element.
|
|
27254
|
+
*/
|
|
27255
|
+
addWrapperStyles(
|
|
27256
|
+
/**
|
|
27257
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27258
|
+
*/
|
|
27259
|
+
oRm: sap.ui.core.RenderManager,
|
|
27260
|
+
/**
|
|
27261
|
+
* An object representation of the control that should be rendered.
|
|
27262
|
+
*/
|
|
27263
|
+
oControl: sap.m.InputBase
|
|
27264
|
+
): void;
|
|
27265
|
+
/**
|
|
27266
|
+
* Write the closing tag name of the input.
|
|
27267
|
+
*/
|
|
27268
|
+
closeInputTag(
|
|
27269
|
+
/**
|
|
27270
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27271
|
+
*/
|
|
27272
|
+
oRm: sap.ui.core.RenderManager,
|
|
27273
|
+
/**
|
|
27274
|
+
* An object representation of the control that should be rendered.
|
|
27275
|
+
*/
|
|
27276
|
+
oControl: sap.m.InputBase
|
|
27277
|
+
): void;
|
|
27278
|
+
/**
|
|
27279
|
+
* Ends opened input tag.
|
|
27280
|
+
*/
|
|
27281
|
+
endInputTag(
|
|
27282
|
+
/**
|
|
27283
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27284
|
+
*/
|
|
27285
|
+
oRm: sap.ui.core.RenderManager,
|
|
27286
|
+
/**
|
|
27287
|
+
* An object representation of the control that should be rendered.
|
|
27288
|
+
*/
|
|
27289
|
+
oControl: sap.m.InputBase
|
|
27290
|
+
): void;
|
|
27291
|
+
/**
|
|
27292
|
+
* Returns the accessibility state of the control. Hook for the subclasses.
|
|
27293
|
+
*/
|
|
27294
|
+
getAccessibilityState(
|
|
27295
|
+
/**
|
|
27296
|
+
* an object representation of the control.
|
|
27297
|
+
*/
|
|
27298
|
+
oControl: sap.m.InputBase
|
|
27299
|
+
): Object;
|
|
27300
|
+
/**
|
|
27301
|
+
* Returns the inner aria describedby ids for the accessibility. Hook for the subclasses.
|
|
27302
|
+
*/
|
|
27303
|
+
getAriaDescribedBy(
|
|
27304
|
+
/**
|
|
27305
|
+
* an object representation of the control.
|
|
27306
|
+
*/
|
|
27307
|
+
oControl: sap.m.InputBase
|
|
27308
|
+
): string | undefined;
|
|
27309
|
+
/**
|
|
27310
|
+
* Returns the inner aria labelledby ids for the accessibility. Hook for the subclasses.
|
|
27311
|
+
*/
|
|
27312
|
+
getAriaLabelledBy(
|
|
27313
|
+
/**
|
|
27314
|
+
* an object representation of the control.
|
|
27315
|
+
*/
|
|
27316
|
+
oControl: sap.m.InputBase
|
|
27317
|
+
): string | undefined;
|
|
27318
|
+
/**
|
|
27319
|
+
* Returns aria accessibility role for the control. Hook for the subclasses.
|
|
27320
|
+
*/
|
|
27321
|
+
getAriaRole(
|
|
27322
|
+
/**
|
|
27323
|
+
* an object representation of the control
|
|
27324
|
+
*/
|
|
27325
|
+
oControl: sap.m.InputBase
|
|
27326
|
+
): string;
|
|
27327
|
+
/**
|
|
27328
|
+
* Returns the inner aria describedby announcement texts for the accessibility. Hook for the subclasses.
|
|
27329
|
+
*/
|
|
27330
|
+
getDescribedByAnnouncement(
|
|
27331
|
+
/**
|
|
27332
|
+
* an object representation of the control.
|
|
27333
|
+
*/
|
|
27334
|
+
oControl: sap.m.InputBase
|
|
27335
|
+
): string;
|
|
27336
|
+
/**
|
|
27337
|
+
* Defines the ID suffix of the inner element
|
|
27338
|
+
*/
|
|
27339
|
+
getInnerSuffix(): string;
|
|
27340
|
+
/**
|
|
27341
|
+
* Returns the inner aria labelledby announcement texts for the accessibility. Hook for the subclasses.
|
|
27342
|
+
*/
|
|
27343
|
+
getLabelledByAnnouncement(
|
|
27344
|
+
/**
|
|
27345
|
+
* an object representation of the control.
|
|
27346
|
+
*/
|
|
27347
|
+
oControl: sap.m.InputBase
|
|
27348
|
+
): string;
|
|
27349
|
+
/**
|
|
27350
|
+
* Write the opening tag name of the input.
|
|
27351
|
+
*/
|
|
27352
|
+
openInputTag(
|
|
27353
|
+
/**
|
|
27354
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27355
|
+
*/
|
|
27356
|
+
oRm: sap.ui.core.RenderManager,
|
|
27357
|
+
/**
|
|
27358
|
+
* An object representation of the control that should be rendered.
|
|
27359
|
+
*/
|
|
27360
|
+
oControl: sap.m.InputBase
|
|
27361
|
+
): void;
|
|
27362
|
+
/**
|
|
27363
|
+
* This method is reserved for derived classes to prepend inner content.
|
|
27364
|
+
*/
|
|
27365
|
+
prependInnerContent(
|
|
27366
|
+
/**
|
|
27367
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27368
|
+
*/
|
|
27369
|
+
oRm: sap.ui.core.RenderManager,
|
|
27370
|
+
/**
|
|
27371
|
+
* An object representation of the control that should be rendered.
|
|
27372
|
+
*/
|
|
27373
|
+
oControl: sap.m.InputBase
|
|
27374
|
+
): void;
|
|
27375
|
+
/**
|
|
27376
|
+
* Renders the hidden aria labelledby node for the accessibility. Hook for the subclasses.
|
|
27377
|
+
*/
|
|
27378
|
+
renderAriaDescribedBy(
|
|
27379
|
+
/**
|
|
27380
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27381
|
+
*/
|
|
27382
|
+
oRm: sap.ui.core.RenderManager,
|
|
27383
|
+
/**
|
|
27384
|
+
* An object representation of the control that should be rendered.
|
|
27385
|
+
*/
|
|
27386
|
+
oControl: sap.m.InputBase
|
|
27387
|
+
): void;
|
|
27388
|
+
/**
|
|
27389
|
+
* Renders the hidden aria labelledby node for the accessibility. Hook for the subclasses.
|
|
27390
|
+
*/
|
|
27391
|
+
renderAriaLabelledBy(
|
|
27392
|
+
/**
|
|
27393
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27394
|
+
*/
|
|
27395
|
+
oRm: sap.ui.core.RenderManager,
|
|
27396
|
+
/**
|
|
27397
|
+
* An object representation of the control that should be rendered.
|
|
27398
|
+
*/
|
|
27399
|
+
oControl: sap.m.InputBase
|
|
27400
|
+
): void;
|
|
27401
|
+
/**
|
|
27402
|
+
* Renders the hidden aria describedby and errormessage nodes for the accessibility.
|
|
27403
|
+
*/
|
|
27404
|
+
renderValueStateAccDom(
|
|
27405
|
+
/**
|
|
27406
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27407
|
+
*/
|
|
27408
|
+
oRm: sap.ui.core.RenderManager,
|
|
27409
|
+
/**
|
|
27410
|
+
* An object representation of the control that should be rendered.
|
|
27411
|
+
*/
|
|
27412
|
+
oControl: sap.m.InputBase
|
|
27413
|
+
): void;
|
|
27414
|
+
/**
|
|
27415
|
+
* Writes the accessibility state of the control. Hook for the subclasses.
|
|
27416
|
+
*/
|
|
27417
|
+
writeAccessibilityState(
|
|
27418
|
+
/**
|
|
27419
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27420
|
+
*/
|
|
27421
|
+
oRm: sap.ui.core.RenderManager,
|
|
27422
|
+
/**
|
|
27423
|
+
* An object representation of the control that should be rendered.
|
|
27424
|
+
*/
|
|
27425
|
+
oControl: sap.m.InputBase
|
|
27426
|
+
): void;
|
|
27427
|
+
/**
|
|
27428
|
+
* Write the decorations of the input - description and value-help icon.
|
|
27429
|
+
*/
|
|
27430
|
+
writeDecorations(
|
|
27431
|
+
/**
|
|
27432
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27433
|
+
*/
|
|
27434
|
+
oRm: sap.ui.core.RenderManager,
|
|
27435
|
+
/**
|
|
27436
|
+
* An object representation of the control that should be rendered.
|
|
27437
|
+
*/
|
|
27438
|
+
oControl: sap.m.InputBase
|
|
27439
|
+
): void;
|
|
27440
|
+
/**
|
|
27441
|
+
* Renders icons from the icon aggregations.
|
|
27442
|
+
*/
|
|
27443
|
+
writeIcons(
|
|
27444
|
+
/**
|
|
27445
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27446
|
+
*/
|
|
27447
|
+
oRm: sap.ui.core.RenderManager,
|
|
27448
|
+
/**
|
|
27449
|
+
* List of icons to render
|
|
27450
|
+
*/
|
|
27451
|
+
aIcons: sap.ui.core.Icon[]
|
|
27452
|
+
): void;
|
|
27453
|
+
/**
|
|
27454
|
+
* This method is reserved for derived classes to add extra attributes for the input element.
|
|
27455
|
+
*/
|
|
27456
|
+
writeInnerAttributes(
|
|
27457
|
+
/**
|
|
27458
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27459
|
+
*/
|
|
27460
|
+
oRm: sap.ui.core.RenderManager,
|
|
27461
|
+
/**
|
|
27462
|
+
* An object representation of the control that should be rendered.
|
|
27463
|
+
*/
|
|
27464
|
+
oControl: sap.m.InputBase
|
|
27465
|
+
): void;
|
|
27466
|
+
/**
|
|
27467
|
+
* Write the value of the input.
|
|
27468
|
+
*/
|
|
27469
|
+
writeInnerContent(
|
|
27470
|
+
/**
|
|
27471
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27472
|
+
*/
|
|
27473
|
+
oRm: sap.ui.core.RenderManager,
|
|
27474
|
+
/**
|
|
27475
|
+
* An object representation of the control that should be rendered.
|
|
27476
|
+
*/
|
|
27477
|
+
oControl: sap.m.InputBase
|
|
27478
|
+
): void;
|
|
27479
|
+
/**
|
|
27480
|
+
* Write the value of the input.
|
|
27481
|
+
*/
|
|
27482
|
+
writeInnerValue(
|
|
27483
|
+
/**
|
|
27484
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27485
|
+
*/
|
|
27486
|
+
oRm: sap.ui.core.RenderManager,
|
|
27487
|
+
/**
|
|
27488
|
+
* An object representation of the control that should be rendered.
|
|
27489
|
+
*/
|
|
27490
|
+
oControl: sap.m.InputBase
|
|
27491
|
+
): void;
|
|
27492
|
+
/**
|
|
27493
|
+
* This method is reserved for derived class to add extra attributes for input container.
|
|
27494
|
+
*/
|
|
27495
|
+
writeOuterAttributes(
|
|
27496
|
+
/**
|
|
27497
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27498
|
+
*/
|
|
27499
|
+
oRm: sap.ui.core.RenderManager,
|
|
27500
|
+
/**
|
|
27501
|
+
* An object representation of the control that should be rendered.
|
|
27502
|
+
*/
|
|
27503
|
+
oControl: sap.m.InputBase
|
|
27504
|
+
): void;
|
|
27505
|
+
}
|
|
27506
|
+
const InputBaseRenderer: InputBaseRenderer;
|
|
27507
|
+
|
|
27508
|
+
/**
|
|
27509
|
+
* Input renderer.
|
|
27510
|
+
*
|
|
27511
|
+
* InputRenderer extends the InputBaseRenderer
|
|
27512
|
+
*/
|
|
27513
|
+
interface InputRenderer {
|
|
27514
|
+
/**
|
|
27515
|
+
* Adds inner css classes to the input field
|
|
27516
|
+
*/
|
|
27517
|
+
addInnerClasses(
|
|
27518
|
+
/**
|
|
27519
|
+
* the RenderManager that can be used for writing to the render output buffer
|
|
27520
|
+
*/
|
|
27521
|
+
oRm: sap.ui.core.RenderManager,
|
|
27522
|
+
/**
|
|
27523
|
+
* an object representation of the control that should be rendered
|
|
27524
|
+
*/
|
|
27525
|
+
oControl: sap.m.Input
|
|
27526
|
+
): void;
|
|
27527
|
+
/**
|
|
27528
|
+
* Adds control specific class
|
|
27529
|
+
*/
|
|
27530
|
+
addOuterClasses(
|
|
27531
|
+
/**
|
|
27532
|
+
* the RenderManager that can be used for writing to the render output buffer
|
|
27533
|
+
*/
|
|
27534
|
+
oRm: sap.ui.core.RenderManager,
|
|
27535
|
+
/**
|
|
27536
|
+
* an object representation of the control that should be rendered
|
|
27537
|
+
*/
|
|
27538
|
+
oControl: sap.m.Input
|
|
27539
|
+
): void;
|
|
27540
|
+
/**
|
|
27541
|
+
* Adds extra styles to the wrapper of the input field.
|
|
27542
|
+
*/
|
|
27543
|
+
addWrapperStyles(
|
|
27544
|
+
/**
|
|
27545
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27546
|
+
*/
|
|
27547
|
+
oRm: sap.ui.core.RenderManager,
|
|
27548
|
+
/**
|
|
27549
|
+
* An object representation of the control that should be rendered.
|
|
27550
|
+
*/
|
|
27551
|
+
oControl: sap.m.Input
|
|
27552
|
+
): void;
|
|
27553
|
+
/**
|
|
27554
|
+
* Returns the inner aria describedby ids for the accessibility.
|
|
27555
|
+
*/
|
|
27556
|
+
getAriaDescribedBy(
|
|
27557
|
+
/**
|
|
27558
|
+
* an object representation of the control.
|
|
27559
|
+
*/
|
|
27560
|
+
oControl: sap.m.Input
|
|
27561
|
+
): string | undefined;
|
|
27562
|
+
/**
|
|
27563
|
+
* Returns aria accessibility role for the control. Hook for the subclasses.
|
|
27564
|
+
*/
|
|
27565
|
+
getAriaRole(
|
|
27566
|
+
/**
|
|
27567
|
+
* an object representation of the control
|
|
27568
|
+
*/
|
|
27569
|
+
oControl: sap.m.Input
|
|
27570
|
+
): string;
|
|
27571
|
+
/**
|
|
27572
|
+
* Write the decorations of the input - description and value-help icon.
|
|
27573
|
+
*/
|
|
27574
|
+
writeDecorations(
|
|
27575
|
+
/**
|
|
27576
|
+
* The RenderManager that can be used for writing to the render output buffer.
|
|
27577
|
+
*/
|
|
27578
|
+
oRm: sap.ui.core.RenderManager,
|
|
27579
|
+
/**
|
|
27580
|
+
* An object representation of the control that should be rendered.
|
|
27581
|
+
*/
|
|
27582
|
+
oControl: sap.m.Input
|
|
27583
|
+
): void;
|
|
27584
|
+
/**
|
|
27585
|
+
* add extra attributes to Input
|
|
27586
|
+
*/
|
|
27587
|
+
writeInnerAttributes(
|
|
27588
|
+
/**
|
|
27589
|
+
* the RenderManager that can be used for writing to the render output buffer
|
|
27590
|
+
*/
|
|
27591
|
+
oRm: sap.ui.core.RenderManager,
|
|
27592
|
+
/**
|
|
27593
|
+
* an object representation of the control that should be rendered
|
|
27594
|
+
*/
|
|
27595
|
+
oControl: sap.m.Input
|
|
27596
|
+
): void;
|
|
27597
|
+
}
|
|
27598
|
+
const InputRenderer: InputRenderer;
|
|
27599
|
+
|
|
26507
27600
|
/**
|
|
26508
27601
|
* @SINCE 1.9.2
|
|
26509
27602
|
*
|
|
@@ -26761,10 +27854,10 @@ declare namespace sap {
|
|
|
26761
27854
|
* ```
|
|
26762
27855
|
*
|
|
26763
27856
|
*
|
|
26764
|
-
* When using the `sap.m.MessageBox` in SAP Quartz themes, the breakpoints and layout paddings
|
|
26765
|
-
* determined by the MessageBox' width. To enable this concept and add responsive paddings to an
|
|
26766
|
-
* of the MessageBox control, you have to add the following classes depending on your use case:
|
|
26767
|
-
* `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
|
|
27857
|
+
* When using the `sap.m.MessageBox` in SAP Quartz and Horizon themes, the breakpoints and layout paddings
|
|
27858
|
+
* could be determined by the MessageBox' width. To enable this concept and add responsive paddings to an
|
|
27859
|
+
* element of the MessageBox control, you have to add the following classes depending on your use case:
|
|
27860
|
+
* `sapUiResponsivePadding--header`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
|
|
26768
27861
|
* See:
|
|
26769
27862
|
* {@link fiori:https://experience.sap.com/fiori-design-web/message-box/ Message Box}
|
|
26770
27863
|
*/
|
|
@@ -29337,6 +30430,25 @@ declare namespace sap {
|
|
|
29337
30430
|
* ariaDescribedBy}.
|
|
29338
30431
|
*/
|
|
29339
30432
|
getAriaDescribedBy(): sap.ui.core.ID[];
|
|
30433
|
+
/**
|
|
30434
|
+
* @SINCE 1.99.0
|
|
30435
|
+
*
|
|
30436
|
+
* Gets current value of property {@link #getAriaHasPopup ariaHasPopup}.
|
|
30437
|
+
*
|
|
30438
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
30439
|
+
*
|
|
30440
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
30441
|
+
* value.
|
|
30442
|
+
*
|
|
30443
|
+
* NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
|
|
30444
|
+
* to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
|
|
30445
|
+
* if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
|
|
30446
|
+
* Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
|
|
30447
|
+
* on overlay over the application.
|
|
30448
|
+
*
|
|
30449
|
+
* Default value is `None`.
|
|
30450
|
+
*/
|
|
30451
|
+
getAriaHasPopup(): sap.ui.core.aria.HasPopup;
|
|
29340
30452
|
/**
|
|
29341
30453
|
* Returns array of IDs of the elements which are the current targets of the association {@link #getAriaLabelledBy
|
|
29342
30454
|
* ariaLabelledBy}.
|
|
@@ -29498,6 +30610,32 @@ declare namespace sap {
|
|
|
29498
30610
|
*/
|
|
29499
30611
|
vAriaLabelledBy: int | sap.ui.core.ID | sap.ui.core.Control
|
|
29500
30612
|
): sap.ui.core.ID;
|
|
30613
|
+
/**
|
|
30614
|
+
* @SINCE 1.99.0
|
|
30615
|
+
*
|
|
30616
|
+
* Sets a new value for property {@link #getAriaHasPopup ariaHasPopup}.
|
|
30617
|
+
*
|
|
30618
|
+
* Specifies the value of the `aria-haspopup` attribute
|
|
30619
|
+
*
|
|
30620
|
+
* If the value is `None`, the attribute will not be rendered. Otherwise it will be rendered with the selected
|
|
30621
|
+
* value.
|
|
30622
|
+
*
|
|
30623
|
+
* NOTE: Use this property only when an avatar is related to a popover/popup. The value needs to be equal
|
|
30624
|
+
* to the main/root role of the popup - e.g. dialog, menu or list (examples: if you have dialog -> dialog,
|
|
30625
|
+
* if you have menu -> menu; if you have list -> list; if you have dialog containing a list -> dialog).
|
|
30626
|
+
* Do not use it, if you open a standard sap.m.Dialog, MessageBox or other type of dialogs displayed as
|
|
30627
|
+
* on overlay over the application.
|
|
30628
|
+
*
|
|
30629
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
30630
|
+
*
|
|
30631
|
+
* Default value is `None`.
|
|
30632
|
+
*/
|
|
30633
|
+
setAriaHasPopup(
|
|
30634
|
+
/**
|
|
30635
|
+
* New value for property `ariaHasPopup`
|
|
30636
|
+
*/
|
|
30637
|
+
sAriaHasPopup?: sap.ui.core.aria.HasPopup
|
|
30638
|
+
): this;
|
|
29501
30639
|
/**
|
|
29502
30640
|
* Sets a new value for property {@link #getBackgroundColor backgroundColor}.
|
|
29503
30641
|
*
|
|
@@ -38518,6 +39656,25 @@ declare namespace sap {
|
|
|
38518
39656
|
* Default value is `false`.
|
|
38519
39657
|
*/
|
|
38520
39658
|
getShowCurrentTimeButton(): boolean;
|
|
39659
|
+
/**
|
|
39660
|
+
* @SINCE 1.99
|
|
39661
|
+
*
|
|
39662
|
+
* Gets current value of property {@link #getShowTimezone showTimezone}.
|
|
39663
|
+
*
|
|
39664
|
+
* Determines whether to show the timezone or not.
|
|
39665
|
+
*/
|
|
39666
|
+
getShowTimezone(): boolean;
|
|
39667
|
+
/**
|
|
39668
|
+
* @SINCE 1.99
|
|
39669
|
+
*
|
|
39670
|
+
* Gets current value of property {@link #getTimezone timezone}.
|
|
39671
|
+
*
|
|
39672
|
+
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
39673
|
+
* property string is treated as if it is formatted in this timezone. However, the `dateValue` property
|
|
39674
|
+
* is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
|
|
39675
|
+
* it is adjusted when the `timezone` changes.
|
|
39676
|
+
*/
|
|
39677
|
+
getTimezone(): string;
|
|
38521
39678
|
/**
|
|
38522
39679
|
* @SINCE 1.56
|
|
38523
39680
|
*
|
|
@@ -38571,6 +39728,39 @@ declare namespace sap {
|
|
|
38571
39728
|
*/
|
|
38572
39729
|
bShowCurrentTimeButton?: boolean
|
|
38573
39730
|
): this;
|
|
39731
|
+
/**
|
|
39732
|
+
* @SINCE 1.99
|
|
39733
|
+
*
|
|
39734
|
+
* Sets a new value for property {@link #getShowTimezone showTimezone}.
|
|
39735
|
+
*
|
|
39736
|
+
* Determines whether to show the timezone or not.
|
|
39737
|
+
*
|
|
39738
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39739
|
+
*/
|
|
39740
|
+
setShowTimezone(
|
|
39741
|
+
/**
|
|
39742
|
+
* New value for property `showTimezone`
|
|
39743
|
+
*/
|
|
39744
|
+
bShowTimezone: boolean
|
|
39745
|
+
): this;
|
|
39746
|
+
/**
|
|
39747
|
+
* @SINCE 1.99
|
|
39748
|
+
*
|
|
39749
|
+
* Sets a new value for property {@link #getTimezone timezone}.
|
|
39750
|
+
*
|
|
39751
|
+
* The IANA timezone ID, e.g `"Europe/Berlin"`. Date and time are displayed in this timezone. The `value`
|
|
39752
|
+
* property string is treated as if it is formatted in this timezone. However, the `dateValue` property
|
|
39753
|
+
* is a JS Date object, which is the same point in time as the `value`, but in the local timezone. Thus,
|
|
39754
|
+
* it is adjusted when the `timezone` changes.
|
|
39755
|
+
*
|
|
39756
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
39757
|
+
*/
|
|
39758
|
+
setTimezone(
|
|
39759
|
+
/**
|
|
39760
|
+
* New value for property `timezone`
|
|
39761
|
+
*/
|
|
39762
|
+
sTimezone: string
|
|
39763
|
+
): this;
|
|
38574
39764
|
}
|
|
38575
39765
|
/**
|
|
38576
39766
|
* A popup that interrupts the current processing and prompts the user for an action or an input in a modal
|
|
@@ -38604,9 +39794,9 @@ declare namespace sap {
|
|
|
38604
39794
|
* - If the `contentWidth` and/or `contentHeight` properties are set, the Dialog will try to fill those
|
|
38605
39795
|
* sizes.
|
|
38606
39796
|
* - If there is no specific sizing, the Dialog will try to adjust its size to its content. When
|
|
38607
|
-
* using the `sap.m.Dialog` in SAP Quartz themes, the breakpoints and layout paddings could
|
|
38608
|
-
* by the Dialog's width. To enable this concept and add responsive paddings to an element
|
|
38609
|
-
* control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
|
|
39797
|
+
* using the `sap.m.Dialog` in SAP Quartz and Horizon themes, the breakpoints and layout paddings could
|
|
39798
|
+
* be determined by the Dialog's width. To enable this concept and add responsive paddings to an element
|
|
39799
|
+
* of the Dialog control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
|
|
38610
39800
|
* `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
|
|
38611
39801
|
* Smartphones: If the Dialog has one or two actions, they will cover the entire footer. If there are more
|
|
38612
39802
|
* actions, they will overflow. Tablets: The action buttons in the toolbar are **right-aligned**. Use **cozy**
|
|
@@ -40203,7 +41393,11 @@ declare namespace sap {
|
|
|
40203
41393
|
/**
|
|
40204
41394
|
* String value to be parsed
|
|
40205
41395
|
*/
|
|
40206
|
-
sValue: string
|
|
41396
|
+
sValue: string,
|
|
41397
|
+
/**
|
|
41398
|
+
* String value of the key we will parse for
|
|
41399
|
+
*/
|
|
41400
|
+
sKey: string
|
|
40207
41401
|
): object;
|
|
40208
41402
|
}
|
|
40209
41403
|
/**
|
|
@@ -40674,11 +41868,12 @@ declare namespace sap {
|
|
|
40674
41868
|
* Array of standard and custom option keys
|
|
40675
41869
|
*
|
|
40676
41870
|
* Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
|
|
40677
|
-
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "
|
|
40678
|
-
* "TO", "
|
|
40679
|
-
* "
|
|
40680
|
-
* "
|
|
40681
|
-
* "
|
|
41871
|
+
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "DATETIMERANGE",
|
|
41872
|
+
* "FROM", "TO", "FROMDATETIME", "TODATETIME", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS",
|
|
41873
|
+
* "LASTQUARTERS", "LASTYEARS", "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO",
|
|
41874
|
+
* "THISWEEK", "LASTWEEK", "NEXTWEEK", "SPECIFICMONTH", "SPECIFICMONTHINYEAR", "THISMONTH", "LASTMONTH",
|
|
41875
|
+
* "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER", "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4",
|
|
41876
|
+
* "THISYEAR", "LASTYEAR", "NEXTYEAR", "DATETIME"]`.
|
|
40682
41877
|
*/
|
|
40683
41878
|
getOptions(): string[];
|
|
40684
41879
|
/**
|
|
@@ -40872,11 +42067,12 @@ declare namespace sap {
|
|
|
40872
42067
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
40873
42068
|
*
|
|
40874
42069
|
* Default value is `["DATE", "TODAY", "YESTERDAY", "TOMORROW", "FIRSTDAYWEEK", "LASTDAYWEEK", "FIRSTDAYMONTH",
|
|
40875
|
-
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "
|
|
40876
|
-
* "TO", "
|
|
40877
|
-
* "
|
|
40878
|
-
* "
|
|
40879
|
-
* "
|
|
42070
|
+
* "LASTDAYMONTH", "FIRSTDAYQUARTER", "LASTDAYQUARTER", "FIRSTDAYYEAR", "LASTDAYYEAR", "DATERANGE", "DATETIMERANGE",
|
|
42071
|
+
* "FROM", "TO", "FROMDATETIME", "TODATETIME", "YEARTODATE", "DATETOYEAR", "LASTDAYS", "LASTWEEKS", "LASTMONTHS",
|
|
42072
|
+
* "LASTQUARTERS", "LASTYEARS", "NEXTDAYS", "NEXTWEEKS", "NEXTMONTHS", "NEXTQUARTERS", "NEXTYEARS", "TODAYFROMTO",
|
|
42073
|
+
* "THISWEEK", "LASTWEEK", "NEXTWEEK", "SPECIFICMONTH", "SPECIFICMONTHINYEAR", "THISMONTH", "LASTMONTH",
|
|
42074
|
+
* "NEXTMONTH", "THISQUARTER", "LASTQUARTER", "NEXTQUARTER", "QUARTER1", "QUARTER2", "QUARTER3", "QUARTER4",
|
|
42075
|
+
* "THISYEAR", "LASTYEAR", "NEXTYEAR", "DATETIME"]`.
|
|
40880
42076
|
*/
|
|
40881
42077
|
setOptions(
|
|
40882
42078
|
/**
|
|
@@ -47399,6 +48595,17 @@ declare namespace sap {
|
|
|
47399
48595
|
* Content to add to HeaderContainer.
|
|
47400
48596
|
*/
|
|
47401
48597
|
getContent(): sap.ui.core.Control[];
|
|
48598
|
+
/**
|
|
48599
|
+
* @SINCE 1.99
|
|
48600
|
+
* @EXPERIMENTAL (since 1.99)
|
|
48601
|
+
*
|
|
48602
|
+
* Gets current value of property {@link #getGridLayout gridLayout}.
|
|
48603
|
+
*
|
|
48604
|
+
* Enables grid layout in mobile view.
|
|
48605
|
+
*
|
|
48606
|
+
* Default value is `false`.
|
|
48607
|
+
*/
|
|
48608
|
+
getGridLayout(): boolean;
|
|
47402
48609
|
/**
|
|
47403
48610
|
* Gets current value of property {@link #getHeight height}.
|
|
47404
48611
|
*
|
|
@@ -47537,6 +48744,24 @@ declare namespace sap {
|
|
|
47537
48744
|
*/
|
|
47538
48745
|
sBackgroundDesign?: sap.m.BackgroundDesign
|
|
47539
48746
|
): this;
|
|
48747
|
+
/**
|
|
48748
|
+
* @SINCE 1.99
|
|
48749
|
+
* @EXPERIMENTAL (since 1.99)
|
|
48750
|
+
*
|
|
48751
|
+
* Sets a new value for property {@link #getGridLayout gridLayout}.
|
|
48752
|
+
*
|
|
48753
|
+
* Enables grid layout in mobile view.
|
|
48754
|
+
*
|
|
48755
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
48756
|
+
*
|
|
48757
|
+
* Default value is `false`.
|
|
48758
|
+
*/
|
|
48759
|
+
setGridLayout(
|
|
48760
|
+
/**
|
|
48761
|
+
* New value for property `gridLayout`
|
|
48762
|
+
*/
|
|
48763
|
+
bGridLayout?: boolean
|
|
48764
|
+
): this;
|
|
47540
48765
|
/**
|
|
47541
48766
|
* Sets a new value for property {@link #getHeight height}.
|
|
47542
48767
|
*
|
|
@@ -47727,9 +48952,10 @@ declare namespace sap {
|
|
|
47727
48952
|
* - On desktop, tabs can be dragged and dropped (property `enableTabReordering`).
|
|
47728
48953
|
* - If you have a large number of tabs, only the tabs that can fit on screen will be visible. All other
|
|
47729
48954
|
* tabs that can't fit on the screen are available in an overflow tab "More". When using the `sap.m.IconTabBar`
|
|
47730
|
-
* in SAP Quartz themes, the breakpoints and layout paddings could be determined by the Icon
|
|
47731
|
-
* To enable this concept and add responsive paddings to an element of the Icon Tab Bar
|
|
47732
|
-
* to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
|
|
48955
|
+
* in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the Icon
|
|
48956
|
+
* Tab Bar's width. To enable this concept and add responsive paddings to an element of the Icon Tab Bar
|
|
48957
|
+
* control, you have to add the following classes depending on your use case: `sapUiResponsivePadding--header`,
|
|
48958
|
+
* `sapUiResponsivePadding--content`.
|
|
47733
48959
|
*/
|
|
47734
48960
|
class IconTabBar
|
|
47735
48961
|
extends sap.ui.core.Control
|
|
@@ -49735,6 +50961,13 @@ declare namespace sap {
|
|
|
49735
50961
|
* Destroys all the additionalContent in the aggregation {@link #getAdditionalContent additionalContent}.
|
|
49736
50962
|
*/
|
|
49737
50963
|
destroyAdditionalContent(): this;
|
|
50964
|
+
/**
|
|
50965
|
+
* @SINCE 1.101
|
|
50966
|
+
*
|
|
50967
|
+
* See:
|
|
50968
|
+
* sap.ui.core.Control#getAccessibilityInfo
|
|
50969
|
+
*/
|
|
50970
|
+
getAccessibilityInfo(): object;
|
|
49738
50971
|
/**
|
|
49739
50972
|
* @SINCE 1.98.0
|
|
49740
50973
|
*
|
|
@@ -52936,7 +54169,7 @@ declare namespace sap {
|
|
|
52936
54169
|
* Ontap event.
|
|
52937
54170
|
*/
|
|
52938
54171
|
oEvent: jQuery.Event
|
|
52939
|
-
):
|
|
54172
|
+
): boolean;
|
|
52940
54173
|
/**
|
|
52941
54174
|
* @SINCE 1.64
|
|
52942
54175
|
* @EXPERIMENTAL (since 1.64)
|
|
@@ -54633,7 +55866,7 @@ declare namespace sap {
|
|
|
54633
55866
|
/**
|
|
54634
55867
|
* The image subtitle
|
|
54635
55868
|
*/
|
|
54636
|
-
|
|
55869
|
+
sSubtitleText: string
|
|
54637
55870
|
): this;
|
|
54638
55871
|
/**
|
|
54639
55872
|
* Sets the title of the image.
|
|
@@ -55966,6 +57199,12 @@ declare namespace sap {
|
|
|
55966
57199
|
* Destroys all the items in the aggregation {@link #getItems items}.
|
|
55967
57200
|
*/
|
|
55968
57201
|
destroyItems(): this;
|
|
57202
|
+
/**
|
|
57203
|
+
* @SINCE 1.101
|
|
57204
|
+
*
|
|
57205
|
+
* Destroys the noData in the aggregation {@link #getNoData noData}.
|
|
57206
|
+
*/
|
|
57207
|
+
destroyNoData(): this;
|
|
55969
57208
|
/**
|
|
55970
57209
|
* Destroys the swipeContent in the aggregation {@link #getSwipeContent swipeContent}.
|
|
55971
57210
|
*/
|
|
@@ -56577,10 +57816,22 @@ declare namespace sap {
|
|
|
56577
57816
|
* Default value is `Default`.
|
|
56578
57817
|
*/
|
|
56579
57818
|
getMultiSelectMode(): sap.m.MultiSelectMode;
|
|
57819
|
+
/**
|
|
57820
|
+
* @SINCE 1.101
|
|
57821
|
+
*
|
|
57822
|
+
* Gets content of aggregation {@link #getNoData noData}.
|
|
57823
|
+
*
|
|
57824
|
+
* Defines the custom visualization if there is no data available. **Note:** If both a `noDataText` property
|
|
57825
|
+
* and a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
|
|
57826
|
+
* is undefined or set to null, the `noDataText` property is used instead.
|
|
57827
|
+
*/
|
|
57828
|
+
getNoData(): sap.ui.core.Control | string;
|
|
56580
57829
|
/**
|
|
56581
57830
|
* Gets current value of property {@link #getNoDataText noDataText}.
|
|
56582
57831
|
*
|
|
56583
|
-
* This text is displayed
|
|
57832
|
+
* This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
|
|
57833
|
+
* a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
|
|
57834
|
+
* is undefined or set to null, the `noDataText` property is used instead.
|
|
56584
57835
|
*/
|
|
56585
57836
|
getNoDataText(): string;
|
|
56586
57837
|
/**
|
|
@@ -57096,10 +58347,23 @@ declare namespace sap {
|
|
|
57096
58347
|
*/
|
|
57097
58348
|
sMultiSelectMode?: sap.m.MultiSelectMode
|
|
57098
58349
|
): this;
|
|
58350
|
+
/**
|
|
58351
|
+
* @SINCE 1.101
|
|
58352
|
+
*
|
|
58353
|
+
* Sets the aggregated {@link #getNoData noData}.
|
|
58354
|
+
*/
|
|
58355
|
+
setNoData(
|
|
58356
|
+
/**
|
|
58357
|
+
* The noData to set
|
|
58358
|
+
*/
|
|
58359
|
+
vNoData: sap.ui.core.Control | string
|
|
58360
|
+
): this;
|
|
57099
58361
|
/**
|
|
57100
58362
|
* Sets a new value for property {@link #getNoDataText noDataText}.
|
|
57101
58363
|
*
|
|
57102
|
-
* This text is displayed
|
|
58364
|
+
* This text is displayed if the control contains no items. **Note:** If both a `noDataText` property and
|
|
58365
|
+
* a `noData` aggregation are provided, the `noData` aggregation takes priority. If the `noData` aggregation
|
|
58366
|
+
* is undefined or set to null, the `noDataText` property is used instead.
|
|
57103
58367
|
*
|
|
57104
58368
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
57105
58369
|
*/
|
|
@@ -57279,7 +58543,7 @@ declare namespace sap {
|
|
|
57279
58543
|
* This callback function is called with two parameters(swipedListItem and swipedContent) after swipe-out
|
|
57280
58544
|
* animation is finished.
|
|
57281
58545
|
*/
|
|
57282
|
-
|
|
58546
|
+
callback: Function
|
|
57283
58547
|
): this;
|
|
57284
58548
|
/**
|
|
57285
58549
|
* Unbinds aggregation {@link #getItems items} from model data.
|
|
@@ -57913,6 +59177,15 @@ declare namespace sap {
|
|
|
57913
59177
|
* The `sap.m.MaskInput` control allows users to easily enter data in a certain format and in a fixed-width
|
|
57914
59178
|
* input (for example: date, time, phone number, credit card number, currency, IP address, MAC address,
|
|
57915
59179
|
* and others).
|
|
59180
|
+
*
|
|
59181
|
+
* When focused, the masked input field is formatted and prefilled. The `placeholderSymbol` property value
|
|
59182
|
+
* is reserved for a placeholder. The value that has to be entered in this field is in the `mask` property
|
|
59183
|
+
* value format where every symbol corresponds to a rule. A rule is a set of characters that are allowed
|
|
59184
|
+
* for their particular position. Symbols that do not have a rule are immutable characters and are part
|
|
59185
|
+
* of the value formatting.
|
|
59186
|
+
*
|
|
59187
|
+
* Descriptive text as `placeholder` property value should be added, in order guide users what
|
|
59188
|
+
* input is expected based on the particular control configuration.
|
|
57916
59189
|
*/
|
|
57917
59190
|
class MaskInput extends sap.m.InputBase {
|
|
57918
59191
|
/**
|
|
@@ -58843,6 +60116,10 @@ declare namespace sap {
|
|
|
58843
60116
|
*
|
|
58844
60117
|
* Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
|
|
58845
60118
|
* from the icon font.
|
|
60119
|
+
*
|
|
60120
|
+
* Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
|
|
60121
|
+
* icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
|
|
60122
|
+
* selection since there is not enough space for a text.
|
|
58846
60123
|
*/
|
|
58847
60124
|
getIcon(): sap.ui.core.URI;
|
|
58848
60125
|
/**
|
|
@@ -59001,6 +60278,10 @@ declare namespace sap {
|
|
|
59001
60278
|
* Defines the icon to be displayed as a graphical element within the button. It can be an image or an icon
|
|
59002
60279
|
* from the icon font.
|
|
59003
60280
|
*
|
|
60281
|
+
* Note: If only an icon (without text) is provided when `buttonMode` is set to `Split`, please provide
|
|
60282
|
+
* icons for all menu items. Otherwise the action button will be displayed with no icon or text after item
|
|
60283
|
+
* selection since there is not enough space for a text.
|
|
60284
|
+
*
|
|
59004
60285
|
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
59005
60286
|
*/
|
|
59006
60287
|
setIcon(
|
|
@@ -61225,6 +62506,8 @@ declare namespace sap {
|
|
|
61225
62506
|
*/
|
|
61226
62507
|
getAsyncURLHandler(): any;
|
|
61227
62508
|
/**
|
|
62509
|
+
* @SINCE 1.73
|
|
62510
|
+
*
|
|
61228
62511
|
* Gets current value of property {@link #getGroupItems groupItems}.
|
|
61229
62512
|
*
|
|
61230
62513
|
* Defines whether the MessageItems are grouped or not.
|
|
@@ -61351,6 +62634,8 @@ declare namespace sap {
|
|
|
61351
62634
|
oAsyncURLHandler?: any
|
|
61352
62635
|
): this;
|
|
61353
62636
|
/**
|
|
62637
|
+
* @SINCE 1.73
|
|
62638
|
+
*
|
|
61354
62639
|
* Sets a new value for property {@link #getGroupItems groupItems}.
|
|
61355
62640
|
*
|
|
61356
62641
|
* Defines whether the MessageItems are grouped or not.
|
|
@@ -63801,8 +65086,8 @@ declare namespace sap {
|
|
|
63801
65086
|
* using the given data. For back navigation this can be used e.g. when returning from a detail page to
|
|
63802
65087
|
* transfer any settings done there.
|
|
63803
65088
|
*
|
|
63804
|
-
* When the
|
|
63805
|
-
* or as null) in order to have a proper parameter order.
|
|
65089
|
+
* When the `oTransitionParameters` parameter is used, this `backData` parameter must also be given (either
|
|
65090
|
+
* as object or as `null` or `undefined`) in order to have a proper parameter order.
|
|
63806
65091
|
*/
|
|
63807
65092
|
backData?: object,
|
|
63808
65093
|
/**
|
|
@@ -63810,8 +65095,8 @@ declare namespace sap {
|
|
|
63810
65095
|
* like the DOM element which triggered the transition or the desired transition duration. The animation
|
|
63811
65096
|
* type can NOT be selected here - it is always the inverse of the "to" navigation.
|
|
63812
65097
|
*
|
|
63813
|
-
* In order to use the
|
|
63814
|
-
* must be given) for a proper parameter order.
|
|
65098
|
+
* In order to use the `oTransitionParameters parameter, the backData` parameter must be used
|
|
65099
|
+
* (at least `null` or `undefined` must be given) for a proper parameter order.
|
|
63815
65100
|
*
|
|
63816
65101
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
63817
65102
|
* are actually used to influence the transition.
|
|
@@ -63843,22 +65128,22 @@ declare namespace sap {
|
|
|
63843
65128
|
* the "backToPage" navigation. The event on the target page will contain this data object as "backData"
|
|
63844
65129
|
* property.
|
|
63845
65130
|
*
|
|
63846
|
-
* When the
|
|
63847
|
-
* or as null) in order to have a proper parameter order.
|
|
65131
|
+
* When the `oTransitionParameters` parameter is used, this `backData` parameter must also be given (either
|
|
65132
|
+
* as object or as `null` or `undefined`) in order to have a proper parameter order.
|
|
63848
65133
|
*/
|
|
63849
|
-
backData
|
|
65134
|
+
backData?: object,
|
|
63850
65135
|
/**
|
|
63851
65136
|
* This optional object can give additional information to the transition function, like the DOM element
|
|
63852
65137
|
* which triggered the transition or the desired transition duration. The animation type can NOT be selected
|
|
63853
65138
|
* here - it is always the inverse of the "to" navigation.
|
|
63854
65139
|
*
|
|
63855
|
-
* In order to use the
|
|
63856
|
-
* must be given) for a proper parameter order.
|
|
65140
|
+
* In order to use the `oTransitionParameters parameter, the backData` parameter must be used
|
|
65141
|
+
* (at least `null` or `undefined` must be given) for a proper parameter order.
|
|
63857
65142
|
*
|
|
63858
65143
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
63859
65144
|
* are actually used to influence the transition.
|
|
63860
65145
|
*/
|
|
63861
|
-
oTransitionParameters
|
|
65146
|
+
oTransitionParameters?: object
|
|
63862
65147
|
): this;
|
|
63863
65148
|
/**
|
|
63864
65149
|
* @SINCE 1.7.1
|
|
@@ -63879,8 +65164,8 @@ declare namespace sap {
|
|
|
63879
65164
|
* the "backToTop" navigation. The event on the target page will contain this data object as "backData"
|
|
63880
65165
|
* property.
|
|
63881
65166
|
*
|
|
63882
|
-
* When the
|
|
63883
|
-
* or as null) in order to have a proper parameter order.
|
|
65167
|
+
* When the `oTransitionParameters` parameter is used, this `backData` parameter must also be given (either
|
|
65168
|
+
* as object or as `null` or `undefined`) in order to have a proper parameter order.
|
|
63884
65169
|
*/
|
|
63885
65170
|
backData?: object,
|
|
63886
65171
|
/**
|
|
@@ -63888,8 +65173,8 @@ declare namespace sap {
|
|
|
63888
65173
|
* which triggered the transition or the desired transition duration. The animation type can NOT be selected
|
|
63889
65174
|
* here - it is always the inverse of the "to" navigation.
|
|
63890
65175
|
*
|
|
63891
|
-
* In order to use the
|
|
63892
|
-
* must be given) for a proper parameter order.
|
|
65176
|
+
* In order to use the `oTransitionParameters parameter, the backData` parameter must be used
|
|
65177
|
+
* (at least `null` or `undefined` must be given) for a proper parameter order.
|
|
63893
65178
|
*
|
|
63894
65179
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
63895
65180
|
* are actually used to influence the transition.
|
|
@@ -64369,60 +65654,14 @@ declare namespace sap {
|
|
|
64369
65654
|
/**
|
|
64370
65655
|
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
64371
65656
|
*/
|
|
64372
|
-
|
|
65657
|
+
vPageIdOrControl: string,
|
|
64373
65658
|
/**
|
|
64374
65659
|
* The type of the transition/animation to apply. Options are "slide" (horizontal movement from the right),
|
|
64375
65660
|
* "baseSlide", "fade", "flip", and "show" and the names of any registered custom transitions.
|
|
64376
65661
|
*
|
|
64377
65662
|
* None of the standard transitions is currently making use of any given transition parameters.
|
|
64378
65663
|
*/
|
|
64379
|
-
|
|
64380
|
-
/**
|
|
64381
|
-
* Since version 1.7.1. This optional object can carry any payload data which should be made available to
|
|
64382
|
-
* the target page. The "BeforeShow" event on the target page will contain this data object as "data" property.
|
|
64383
|
-
* Use case: in scenarios where the entity triggering the navigation can or should not directly initialize
|
|
64384
|
-
* the target page, it can fill this object and the target page itself (or a listener on it) can take over
|
|
64385
|
-
* the initialization, using the given data.
|
|
64386
|
-
*
|
|
64387
|
-
* When the "transitionParameters" object is used, this "data" object must also be given (either as object
|
|
64388
|
-
* or as null) in order to have a proper parameter order.
|
|
64389
|
-
*/
|
|
64390
|
-
data: object,
|
|
64391
|
-
/**
|
|
64392
|
-
* Since version 1.7.1. This optional object can contain additional information for the transition function,
|
|
64393
|
-
* like the DOM element which triggered the transition or the desired transition duration.
|
|
64394
|
-
*
|
|
64395
|
-
* For a proper parameter order, the "data" parameter must be given when the "transitionParameters" parameter
|
|
64396
|
-
* is used. (it can be given as "null")
|
|
64397
|
-
*
|
|
64398
|
-
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
64399
|
-
* are actually used to influence the transition. The "show", "slide", "baseSlide" and "fade" transitions
|
|
64400
|
-
* do not use any parameter.
|
|
64401
|
-
*/
|
|
64402
|
-
oTransitionParameters: object
|
|
64403
|
-
): this;
|
|
64404
|
-
/**
|
|
64405
|
-
* Navigates to the next page (with drill-down semantic) with the given (or default) animation. This creates
|
|
64406
|
-
* a new history item inside the NavContainer and allows going back.
|
|
64407
|
-
*
|
|
64408
|
-
* Note that any modifications to the target page (like setting its title, or anything else that could cause
|
|
64409
|
-
* a re-rendering) should be done BEFORE calling to(), in order to avoid unwanted side effects, e.g. related
|
|
64410
|
-
* to the page animation.
|
|
64411
|
-
*
|
|
64412
|
-
* Available transitions currently include "slide" (default), "baseSlide", "fade", "flip", and "show". None
|
|
64413
|
-
* of these is currently making use of any given transitionParameters.
|
|
64414
|
-
*
|
|
64415
|
-
* Calling this navigation method triggers first the (cancelable) "navigate" event on the NavContainer,
|
|
64416
|
-
* then the "BeforeHide" pseudo event on the source page and "BeforeFirstShow" (if applicable) and"BeforeShow"
|
|
64417
|
-
* on the target page. Later - after the transition has completed - the "AfterShow" pseudo event is triggered
|
|
64418
|
-
* on the target page and "AfterHide" on the page which has been left. The given data object is available
|
|
64419
|
-
* in the "BeforeFirstShow", "BeforeShow" and "AfterShow" event object as "data" property.
|
|
64420
|
-
*/
|
|
64421
|
-
to(
|
|
64422
|
-
/**
|
|
64423
|
-
* The screen to which drilldown should happen. The ID or the control itself can be given.
|
|
64424
|
-
*/
|
|
64425
|
-
pageId: string,
|
|
65664
|
+
sTransitionName?: string,
|
|
64426
65665
|
/**
|
|
64427
65666
|
* Since version 1.7.1. This optional object can carry any payload data which should be made available to
|
|
64428
65667
|
* the target page. The "BeforeShow" event on the target page will contain this data object as "data" property.
|
|
@@ -64430,22 +65669,22 @@ declare namespace sap {
|
|
|
64430
65669
|
* the target page, it can fill this object and the target page itself (or a listener on it) can take over
|
|
64431
65670
|
* the initialization, using the given data.
|
|
64432
65671
|
*
|
|
64433
|
-
* When the
|
|
64434
|
-
* or as null) in order to have a proper parameter order.
|
|
65672
|
+
* When the `oTransitionParameters` parameter is used, this `oData` parameter must also be given (either
|
|
65673
|
+
* as object or as `null` or `undefined`) in order to have a proper parameter order.
|
|
64435
65674
|
*/
|
|
64436
|
-
|
|
65675
|
+
oData?: object,
|
|
64437
65676
|
/**
|
|
64438
65677
|
* Since version 1.7.1. This optional object can contain additional information for the transition function,
|
|
64439
65678
|
* like the DOM element which triggered the transition or the desired transition duration.
|
|
64440
65679
|
*
|
|
64441
|
-
* For a proper parameter order, the
|
|
64442
|
-
* is used
|
|
65680
|
+
* For a proper parameter order, the `oData` parameter must be given when the `oTransitionParameters` parameter
|
|
65681
|
+
* is used (it can be given as `null` or `undefined`).
|
|
64443
65682
|
*
|
|
64444
65683
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
64445
65684
|
* are actually used to influence the transition. The "show", "slide", "baseSlide" and "fade" transitions
|
|
64446
65685
|
* do not use any parameter.
|
|
64447
65686
|
*/
|
|
64448
|
-
oTransitionParameters
|
|
65687
|
+
oTransitionParameters?: object
|
|
64449
65688
|
): this;
|
|
64450
65689
|
}
|
|
64451
65690
|
/**
|
|
@@ -67051,6 +68290,9 @@ declare namespace sap {
|
|
|
67051
68290
|
*
|
|
67052
68291
|
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
67053
68292
|
* icon is not available, or cannot be displayed.
|
|
68293
|
+
*
|
|
68294
|
+
* **Note:** Provide an empty string value for the `iconAlt` property in case you want to use the icon for
|
|
68295
|
+
* decoration only.
|
|
67054
68296
|
*/
|
|
67055
68297
|
getIconAlt(): string;
|
|
67056
68298
|
/**
|
|
@@ -67639,18 +68881,13 @@ declare namespace sap {
|
|
|
67639
68881
|
bIconActive?: boolean
|
|
67640
68882
|
): this;
|
|
67641
68883
|
/**
|
|
67642
|
-
* Sets
|
|
67643
|
-
*
|
|
67644
|
-
* Determines the alternative text of the `ObjectHeader` icon. The text is displayed if the image for the
|
|
67645
|
-
* icon is not available, or cannot be displayed.
|
|
67646
|
-
*
|
|
67647
|
-
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
68884
|
+
* Sets the alternative text of the `ObjectHeader` icon.
|
|
67648
68885
|
*/
|
|
67649
68886
|
setIconAlt(
|
|
67650
68887
|
/**
|
|
67651
|
-
*
|
|
68888
|
+
* the alternative icon text
|
|
67652
68889
|
*/
|
|
67653
|
-
sIconAlt
|
|
68890
|
+
sIconAlt: boolean
|
|
67654
68891
|
): this;
|
|
67655
68892
|
/**
|
|
67656
68893
|
* Sets a new value for property {@link #getIconDensityAware iconDensityAware}.
|
|
@@ -78744,6 +79981,8 @@ declare namespace sap {
|
|
|
78744
79981
|
*/
|
|
78745
79982
|
getCustomAppointmentsSorterCallback(): sap.m.PlanningCalendar.appointmentsSorterCallback;
|
|
78746
79983
|
/**
|
|
79984
|
+
* @SINCE 1.87
|
|
79985
|
+
*
|
|
78747
79986
|
* Getter for the end point in time of the shown interval
|
|
78748
79987
|
*/
|
|
78749
79988
|
getEndDate(): Date;
|
|
@@ -85858,12 +87097,7 @@ declare namespace sap {
|
|
|
85858
87097
|
/**
|
|
85859
87098
|
* Updates values of the advanced tooltips.
|
|
85860
87099
|
*/
|
|
85861
|
-
updateAdvancedTooltipDom(
|
|
85862
|
-
/**
|
|
85863
|
-
* The new value
|
|
85864
|
-
*/
|
|
85865
|
-
sNewValue: string
|
|
85866
|
-
): void;
|
|
87100
|
+
updateAdvancedTooltipDom(): void;
|
|
85867
87101
|
}
|
|
85868
87102
|
/**
|
|
85869
87103
|
* @SINCE 1.14
|
|
@@ -86376,7 +87610,7 @@ declare namespace sap {
|
|
|
86376
87610
|
/**
|
|
86377
87611
|
* The rating value to be set.
|
|
86378
87612
|
*/
|
|
86379
|
-
|
|
87613
|
+
vValue: float | string
|
|
86380
87614
|
): this;
|
|
86381
87615
|
/**
|
|
86382
87616
|
* Sets a new value for property {@link #getVisualMode visualMode}.
|
|
@@ -89586,6 +90820,61 @@ declare namespace sap {
|
|
|
89586
90820
|
*/
|
|
89587
90821
|
oListener?: object
|
|
89588
90822
|
): this;
|
|
90823
|
+
/**
|
|
90824
|
+
* @SINCE 1.100
|
|
90825
|
+
*
|
|
90826
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.Select`.
|
|
90827
|
+
*
|
|
90828
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
90829
|
+
* otherwise it will be bound to this `sap.m.Select` itself.
|
|
90830
|
+
*
|
|
90831
|
+
* Fires when the user navigates through the `Select` items. It's also fired on revert of the currently
|
|
90832
|
+
* selected item.
|
|
90833
|
+
*
|
|
90834
|
+
* **Note:** Revert occurs in some of the following actions:
|
|
90835
|
+
* - The user clicks outside of the `Select`
|
|
90836
|
+
* - The Escape key is pressed
|
|
90837
|
+
*/
|
|
90838
|
+
attachLiveChange(
|
|
90839
|
+
/**
|
|
90840
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
90841
|
+
* object when firing the event
|
|
90842
|
+
*/
|
|
90843
|
+
oData: object,
|
|
90844
|
+
/**
|
|
90845
|
+
* The function to be called when the event occurs
|
|
90846
|
+
*/
|
|
90847
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
90848
|
+
/**
|
|
90849
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Select` itself
|
|
90850
|
+
*/
|
|
90851
|
+
oListener?: object
|
|
90852
|
+
): this;
|
|
90853
|
+
/**
|
|
90854
|
+
* @SINCE 1.100
|
|
90855
|
+
*
|
|
90856
|
+
* Attaches event handler `fnFunction` to the {@link #event:liveChange liveChange} event of this `sap.m.Select`.
|
|
90857
|
+
*
|
|
90858
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
90859
|
+
* otherwise it will be bound to this `sap.m.Select` itself.
|
|
90860
|
+
*
|
|
90861
|
+
* Fires when the user navigates through the `Select` items. It's also fired on revert of the currently
|
|
90862
|
+
* selected item.
|
|
90863
|
+
*
|
|
90864
|
+
* **Note:** Revert occurs in some of the following actions:
|
|
90865
|
+
* - The user clicks outside of the `Select`
|
|
90866
|
+
* - The Escape key is pressed
|
|
90867
|
+
*/
|
|
90868
|
+
attachLiveChange(
|
|
90869
|
+
/**
|
|
90870
|
+
* The function to be called when the event occurs
|
|
90871
|
+
*/
|
|
90872
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
90873
|
+
/**
|
|
90874
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Select` itself
|
|
90875
|
+
*/
|
|
90876
|
+
oListener?: object
|
|
90877
|
+
): this;
|
|
89589
90878
|
/**
|
|
89590
90879
|
* Binds aggregation {@link #getItems items} to model data.
|
|
89591
90880
|
*
|
|
@@ -89632,6 +90921,23 @@ declare namespace sap {
|
|
|
89632
90921
|
*/
|
|
89633
90922
|
oListener?: object
|
|
89634
90923
|
): this;
|
|
90924
|
+
/**
|
|
90925
|
+
* @SINCE 1.100
|
|
90926
|
+
*
|
|
90927
|
+
* Detaches event handler `fnFunction` from the {@link #event:liveChange liveChange} event of this `sap.m.Select`.
|
|
90928
|
+
*
|
|
90929
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
90930
|
+
*/
|
|
90931
|
+
detachLiveChange(
|
|
90932
|
+
/**
|
|
90933
|
+
* The function to be called, when the event occurs
|
|
90934
|
+
*/
|
|
90935
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
90936
|
+
/**
|
|
90937
|
+
* Context object on which the given function had to be called
|
|
90938
|
+
*/
|
|
90939
|
+
oListener?: object
|
|
90940
|
+
): this;
|
|
89635
90941
|
/**
|
|
89636
90942
|
* Fires event {@link #event:change change} to attached listeners.
|
|
89637
90943
|
*/
|
|
@@ -89650,6 +90956,22 @@ declare namespace sap {
|
|
|
89650
90956
|
previousSelectedItem?: sap.ui.core.Item;
|
|
89651
90957
|
}
|
|
89652
90958
|
): this;
|
|
90959
|
+
/**
|
|
90960
|
+
* @SINCE 1.100
|
|
90961
|
+
*
|
|
90962
|
+
* Fires event {@link #event:liveChange liveChange} to attached listeners.
|
|
90963
|
+
*/
|
|
90964
|
+
fireLiveChange(
|
|
90965
|
+
/**
|
|
90966
|
+
* Parameters to pass along with the event
|
|
90967
|
+
*/
|
|
90968
|
+
mParameters?: {
|
|
90969
|
+
/**
|
|
90970
|
+
* The selected item.
|
|
90971
|
+
*/
|
|
90972
|
+
selectedItem?: sap.ui.core.Item;
|
|
90973
|
+
}
|
|
90974
|
+
): this;
|
|
89653
90975
|
/**
|
|
89654
90976
|
* Returns the `sap.m.Select` accessibility information.
|
|
89655
90977
|
* See:
|
|
@@ -89869,6 +91191,8 @@ declare namespace sap {
|
|
|
89869
91191
|
* - If invalid or none `selectedKey` is used, the first item is being selected.
|
|
89870
91192
|
* - Invalid or missing `selectedKey` leads to severe functional issues in `sap.ui.table.Table`, when
|
|
89871
91193
|
* the `sap.m.Select` is used inside a `sap.ui.table.Table` column.
|
|
91194
|
+
* - If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
|
|
91195
|
+
* property is set to `true`.
|
|
89872
91196
|
*
|
|
89873
91197
|
* Default value is `empty string`.
|
|
89874
91198
|
*/
|
|
@@ -90254,8 +91578,8 @@ declare namespace sap {
|
|
|
90254
91578
|
* `sKey` is an empty string `""` or `undefined`, the value of `sKey` is changed to match the `key` of the
|
|
90255
91579
|
* first enabled item and the first enabled item is selected (if any items exist).
|
|
90256
91580
|
*
|
|
90257
|
-
*
|
|
90258
|
-
* the first item matching the key is selected.
|
|
91581
|
+
* If an item with the default key exists and we try to select it, it happens only if the `forceSelection`
|
|
91582
|
+
* property is set to `true`. If duplicate keys exist, the first item matching the key is selected.
|
|
90259
91583
|
*/
|
|
90260
91584
|
sKey: string
|
|
90261
91585
|
): this;
|
|
@@ -90434,9 +91758,9 @@ declare namespace sap {
|
|
|
90434
91758
|
* we recommend setting the `growing` property to `false`. Responsive Behavior:
|
|
90435
91759
|
* - On phones, the select dialog takes up the whole screen.
|
|
90436
91760
|
* - On desktop and tablet devices, the select dialog appears as a popover. When using the `sap.m.SelectDialog`
|
|
90437
|
-
* in SAP Quartz themes, the breakpoints and layout paddings could be determined by the dialog's
|
|
90438
|
-
* To enable this concept and add responsive paddings to an element of the control, you have to add
|
|
90439
|
-
* following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`,
|
|
91761
|
+
* in SAP Quartz and Horizon themes, the breakpoints and layout paddings could be determined by the dialog's
|
|
91762
|
+
* width. To enable this concept and add responsive paddings to an element of the control, you have to add
|
|
91763
|
+
* the following classes depending on your use case: `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`,
|
|
90440
91764
|
* `sapUiResponsivePadding--content`, `sapUiResponsivePadding--footer`.
|
|
90441
91765
|
*/
|
|
90442
91766
|
class SelectDialog extends sap.m.SelectDialogBase {
|
|
@@ -94967,6 +96291,18 @@ declare namespace sap {
|
|
|
94967
96291
|
* ID of the element which is the current target of the association {@link #getLegend legend}, or `null`.
|
|
94968
96292
|
*/
|
|
94969
96293
|
getLegend(): sap.ui.core.ID;
|
|
96294
|
+
/**
|
|
96295
|
+
* @SINCE 1.99
|
|
96296
|
+
*
|
|
96297
|
+
* Gets current value of property {@link #getScaleFactor scaleFactor}.
|
|
96298
|
+
*
|
|
96299
|
+
* Determines scale factor for the appointments.
|
|
96300
|
+
*
|
|
96301
|
+
* Acceptable range is from 1 to 6.
|
|
96302
|
+
*
|
|
96303
|
+
* Default value is `1`.
|
|
96304
|
+
*/
|
|
96305
|
+
getScaleFactor(): float;
|
|
94970
96306
|
/**
|
|
94971
96307
|
* @SINCE 1.62
|
|
94972
96308
|
*
|
|
@@ -95342,6 +96678,25 @@ declare namespace sap {
|
|
|
95342
96678
|
*/
|
|
95343
96679
|
oLegend: sap.ui.core.ID | sap.m.PlanningCalendarLegend
|
|
95344
96680
|
): this;
|
|
96681
|
+
/**
|
|
96682
|
+
* @SINCE 1.99
|
|
96683
|
+
*
|
|
96684
|
+
* Sets a new value for property {@link #getScaleFactor scaleFactor}.
|
|
96685
|
+
*
|
|
96686
|
+
* Determines scale factor for the appointments.
|
|
96687
|
+
*
|
|
96688
|
+
* Acceptable range is from 1 to 6.
|
|
96689
|
+
*
|
|
96690
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
96691
|
+
*
|
|
96692
|
+
* Default value is `1`.
|
|
96693
|
+
*/
|
|
96694
|
+
setScaleFactor(
|
|
96695
|
+
/**
|
|
96696
|
+
* New value for property `scaleFactor`
|
|
96697
|
+
*/
|
|
96698
|
+
fScaleFactor?: float
|
|
96699
|
+
): this;
|
|
95345
96700
|
/**
|
|
95346
96701
|
* Sets the associated {@link #getSelectedView selectedView}.
|
|
95347
96702
|
*/
|
|
@@ -97873,8 +99228,8 @@ declare namespace sap {
|
|
|
97873
99228
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
97874
99229
|
* are actually used to influence the transition.
|
|
97875
99230
|
*/
|
|
97876
|
-
|
|
97877
|
-
):
|
|
99231
|
+
oTransitionParameters: object
|
|
99232
|
+
): void;
|
|
97878
99233
|
/**
|
|
97879
99234
|
* Navigates back to the previous master page which is found in the history.
|
|
97880
99235
|
*/
|
|
@@ -97904,8 +99259,8 @@ declare namespace sap {
|
|
|
97904
99259
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
97905
99260
|
* are actually used to influence the transition.
|
|
97906
99261
|
*/
|
|
97907
|
-
|
|
97908
|
-
):
|
|
99262
|
+
oTransitionParameters: object
|
|
99263
|
+
): void;
|
|
97909
99264
|
/**
|
|
97910
99265
|
* @SINCE 1.10.0
|
|
97911
99266
|
*
|
|
@@ -97951,7 +99306,7 @@ declare namespace sap {
|
|
|
97951
99306
|
* are actually used to influence the transition.
|
|
97952
99307
|
*/
|
|
97953
99308
|
oTransitionParameters: object
|
|
97954
|
-
):
|
|
99309
|
+
): void;
|
|
97955
99310
|
/**
|
|
97956
99311
|
* Navigates back to the initial/top level of Detail (this is the element aggregated as initialPage, or
|
|
97957
99312
|
* the first added element). NOTE: If already on the initial page, nothing happens. The transition effect
|
|
@@ -97983,8 +99338,8 @@ declare namespace sap {
|
|
|
97983
99338
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
97984
99339
|
* are actually used to influence the transition.
|
|
97985
99340
|
*/
|
|
97986
|
-
|
|
97987
|
-
):
|
|
99341
|
+
oTransitionParameters: object
|
|
99342
|
+
): void;
|
|
97988
99343
|
/**
|
|
97989
99344
|
* Navigates back to the initial/top level of Master (this is the element aggregated as "initialPage", or
|
|
97990
99345
|
* the first added element). NOTE: If already on the initial page, nothing happens. The transition effect
|
|
@@ -98016,8 +99371,8 @@ declare namespace sap {
|
|
|
98016
99371
|
* NOTE: it depends on the transition function how the object should be structured and which parameters
|
|
98017
99372
|
* are actually used to influence the transition.
|
|
98018
99373
|
*/
|
|
98019
|
-
|
|
98020
|
-
):
|
|
99374
|
+
oTransitionParameters: object
|
|
99375
|
+
): void;
|
|
98021
99376
|
/**
|
|
98022
99377
|
* Destroys all the detailPages in the aggregation {@link #getDetailPages detailPages}.
|
|
98023
99378
|
*/
|
|
@@ -98524,8 +99879,8 @@ declare namespace sap {
|
|
|
98524
99879
|
/**
|
|
98525
99880
|
* The ID of the page that needs to be fetched.
|
|
98526
99881
|
*/
|
|
98527
|
-
|
|
98528
|
-
): sap.ui.core.Control;
|
|
99882
|
+
pageId: string
|
|
99883
|
+
): sap.ui.core.Control | null;
|
|
98529
99884
|
/**
|
|
98530
99885
|
* Gets content of aggregation {@link #getDetailPages detailPages}.
|
|
98531
99886
|
*
|
|
@@ -98576,8 +99931,8 @@ declare namespace sap {
|
|
|
98576
99931
|
/**
|
|
98577
99932
|
* The ID of the page that needs to be fetched
|
|
98578
99933
|
*/
|
|
98579
|
-
|
|
98580
|
-
): sap.ui.core.Control;
|
|
99934
|
+
pageId: string
|
|
99935
|
+
): sap.ui.core.Control | null;
|
|
98581
99936
|
/**
|
|
98582
99937
|
* Gets content of aggregation {@link #getMasterPages masterPages}.
|
|
98583
99938
|
*
|
|
@@ -98607,13 +99962,13 @@ declare namespace sap {
|
|
|
98607
99962
|
/**
|
|
98608
99963
|
* The ID of the page that needs to be fetched
|
|
98609
99964
|
*/
|
|
98610
|
-
|
|
99965
|
+
pageId: string,
|
|
98611
99966
|
/**
|
|
98612
99967
|
* If the page with given ID should be fetched from the master area. If it's set to false, the page will
|
|
98613
99968
|
* be fetched from detail area.
|
|
98614
99969
|
*/
|
|
98615
99970
|
bMaster: boolean
|
|
98616
|
-
): sap.ui.core.Control;
|
|
99971
|
+
): sap.ui.core.Control | null;
|
|
98617
99972
|
/**
|
|
98618
99973
|
* Returns the previous page (the page, from which the user drilled down to the current page with to()).
|
|
98619
99974
|
* Note: this is not the page, which the user has seen before, but the page which is the target of the next
|
|
@@ -98728,10 +100083,11 @@ declare namespace sap {
|
|
|
98728
100083
|
/**
|
|
98729
100084
|
* @SINCE 1.16.5
|
|
98730
100085
|
*
|
|
98731
|
-
* Returns whether master area is currently displayed on the screen.
|
|
98732
|
-
*
|
|
98733
|
-
*
|
|
98734
|
-
*
|
|
100086
|
+
* Returns whether master area is currently displayed on the screen.
|
|
100087
|
+
*
|
|
100088
|
+
* In desktop browser or tablet, this method returns true when master area is displayed on the screen, regardless
|
|
100089
|
+
* if in portrait or landscape mode. On mobile phone devices, this method returns true when the currently
|
|
100090
|
+
* displayed page is from the pages, which are added to the master area, otherwise, it returns false.
|
|
98735
100091
|
*/
|
|
98736
100092
|
isMasterShown(): boolean;
|
|
98737
100093
|
/**
|
|
@@ -98947,7 +100303,7 @@ declare namespace sap {
|
|
|
98947
100303
|
/**
|
|
98948
100304
|
* Used to make the master page visible when in ShowHideMode and the device is in portrait mode.
|
|
98949
100305
|
*/
|
|
98950
|
-
showMaster():
|
|
100306
|
+
showMaster(): void;
|
|
98951
100307
|
/**
|
|
98952
100308
|
* @SINCE 1.10.0
|
|
98953
100309
|
*
|
|
@@ -98990,7 +100346,7 @@ declare namespace sap {
|
|
|
98990
100346
|
* any parameter.
|
|
98991
100347
|
*/
|
|
98992
100348
|
oTransitionParameters: object
|
|
98993
|
-
):
|
|
100349
|
+
): void;
|
|
98994
100350
|
/**
|
|
98995
100351
|
* @SINCE 1.10.0
|
|
98996
100352
|
*
|
|
@@ -99026,7 +100382,7 @@ declare namespace sap {
|
|
|
99026
100382
|
* any parameter.
|
|
99027
100383
|
*/
|
|
99028
100384
|
oTransitionParameters: object
|
|
99029
|
-
):
|
|
100385
|
+
): void;
|
|
99030
100386
|
/**
|
|
99031
100387
|
* Navigates to a given detail page.
|
|
99032
100388
|
*/
|
|
@@ -99062,8 +100418,8 @@ declare namespace sap {
|
|
|
99062
100418
|
* are actually used to influence the transition. The "show", "slide" and "fade" transitions do not use
|
|
99063
100419
|
* any parameter.
|
|
99064
100420
|
*/
|
|
99065
|
-
|
|
99066
|
-
):
|
|
100421
|
+
oTransitionParameters: object
|
|
100422
|
+
): void;
|
|
99067
100423
|
/**
|
|
99068
100424
|
* Navigates to a given master page.
|
|
99069
100425
|
*/
|
|
@@ -99103,7 +100459,7 @@ declare namespace sap {
|
|
|
99103
100459
|
* any parameter.
|
|
99104
100460
|
*/
|
|
99105
100461
|
oTransitionParameters: object
|
|
99106
|
-
):
|
|
100462
|
+
): void;
|
|
99107
100463
|
}
|
|
99108
100464
|
/**
|
|
99109
100465
|
* @EXPERIMENTAL (since 1.92)
|
|
@@ -103718,10 +105074,11 @@ declare namespace sap {
|
|
|
103718
105074
|
* only in desktop mode. For more information on current restrictions, you can refer to the {@link sap.m.ListBase
|
|
103719
105075
|
* sap.m.ListBase} `sticky` property. Responsive Behavior:
|
|
103720
105076
|
* - On smaller screens, the columns of the table wrap and build a list that shows all the information.
|
|
103721
|
-
* When using the `sap.m.TableSelectDialog` in SAP Quartz themes, the breakpoints and
|
|
103722
|
-
* could be determined by the dialog's width. To enable this concept and add responsive
|
|
103723
|
-
* of the control, you have to add the following classes depending on your use case:
|
|
103724
|
-
* `sapUiResponsivePadding--
|
|
105077
|
+
* When using the `sap.m.TableSelectDialog` in SAP Quartz and Horizon themes, the breakpoints and
|
|
105078
|
+
* layout paddings could be determined by the dialog's width. To enable this concept and add responsive
|
|
105079
|
+
* paddings to an element of the control, you have to add the following classes depending on your use case:
|
|
105080
|
+
* `sapUiResponsivePadding--header`, `sapUiResponsivePadding--subHeader`, `sapUiResponsivePadding--content`,
|
|
105081
|
+
* `sapUiResponsivePadding--footer`.
|
|
103725
105082
|
*/
|
|
103726
105083
|
class TableSelectDialog extends sap.m.SelectDialogBase {
|
|
103727
105084
|
/**
|
|
@@ -104424,9 +105781,9 @@ declare namespace sap {
|
|
|
104424
105781
|
*/
|
|
104425
105782
|
setBusy(
|
|
104426
105783
|
/**
|
|
104427
|
-
* for enabling busy indicator
|
|
105784
|
+
* flag for enabling busy indicator
|
|
104428
105785
|
*/
|
|
104429
|
-
|
|
105786
|
+
bBusy: boolean
|
|
104430
105787
|
): this;
|
|
104431
105788
|
/**
|
|
104432
105789
|
* Sets the busyIndicatorDelay value to the internal table
|
|
@@ -104503,7 +105860,7 @@ declare namespace sap {
|
|
|
104503
105860
|
/**
|
|
104504
105861
|
* The optional model name
|
|
104505
105862
|
*/
|
|
104506
|
-
|
|
105863
|
+
sModelName?: string
|
|
104507
105864
|
): this;
|
|
104508
105865
|
/**
|
|
104509
105866
|
* Enables/Disables multi selection mode.
|
|
@@ -106238,6 +107595,16 @@ declare namespace sap {
|
|
|
106238
107595
|
* Default value is `"Auto"`.
|
|
106239
107596
|
*/
|
|
106240
107597
|
getSize(): sap.m.Size;
|
|
107598
|
+
/**
|
|
107599
|
+
* @SINCE 1.100.0
|
|
107600
|
+
*
|
|
107601
|
+
* Gets current value of property {@link #getState state}.
|
|
107602
|
+
*
|
|
107603
|
+
* The load status.
|
|
107604
|
+
*
|
|
107605
|
+
* Default value is `Loaded`.
|
|
107606
|
+
*/
|
|
107607
|
+
getState(): sap.m.LoadState;
|
|
106241
107608
|
/**
|
|
106242
107609
|
* Gets current value of property {@link #getUnit unit}.
|
|
106243
107610
|
*
|
|
@@ -106369,6 +107736,23 @@ declare namespace sap {
|
|
|
106369
107736
|
*/
|
|
106370
107737
|
sSize?: sap.m.Size
|
|
106371
107738
|
): this;
|
|
107739
|
+
/**
|
|
107740
|
+
* @SINCE 1.100.0
|
|
107741
|
+
*
|
|
107742
|
+
* Sets a new value for property {@link #getState state}.
|
|
107743
|
+
*
|
|
107744
|
+
* The load status.
|
|
107745
|
+
*
|
|
107746
|
+
* When called with a value of `null` or `undefined`, the default value of the property will be restored.
|
|
107747
|
+
*
|
|
107748
|
+
* Default value is `Loaded`.
|
|
107749
|
+
*/
|
|
107750
|
+
setState(
|
|
107751
|
+
/**
|
|
107752
|
+
* New value for property `state`
|
|
107753
|
+
*/
|
|
107754
|
+
sState?: sap.m.LoadState
|
|
107755
|
+
): this;
|
|
106372
107756
|
/**
|
|
106373
107757
|
* Sets a new value for property {@link #getUnit unit}.
|
|
106374
107758
|
*
|
|
@@ -106733,10 +108117,6 @@ declare namespace sap {
|
|
|
106733
108117
|
* Called after the clock picker appears.
|
|
106734
108118
|
*/
|
|
106735
108119
|
onAfterOpen(): void;
|
|
106736
|
-
/**
|
|
106737
|
-
* Called before the clock picker closes.
|
|
106738
|
-
*/
|
|
106739
|
-
onBeforeClose(): void;
|
|
106740
108120
|
/**
|
|
106741
108121
|
* Called before the clock picker appears.
|
|
106742
108122
|
*/
|
|
@@ -114501,11 +115881,11 @@ declare namespace sap {
|
|
|
114501
115881
|
oSelectedFilterKeys: object
|
|
114502
115882
|
): this;
|
|
114503
115883
|
/**
|
|
114504
|
-
* Sets the selected group item (either by key or
|
|
115884
|
+
* Sets the selected group item (either by key, item id or item instance).
|
|
114505
115885
|
*/
|
|
114506
115886
|
setSelectedGroupItem(
|
|
114507
115887
|
/**
|
|
114508
|
-
* The selected item
|
|
115888
|
+
* The selected item, the item's string key or the item id
|
|
114509
115889
|
*/
|
|
114510
115890
|
vItemOrKey: sap.m.ViewSettingsItem | string
|
|
114511
115891
|
): this;
|
|
@@ -114519,11 +115899,11 @@ declare namespace sap {
|
|
|
114519
115899
|
vItemOrKey: sap.m.ViewSettingsItem | string | null
|
|
114520
115900
|
): this;
|
|
114521
115901
|
/**
|
|
114522
|
-
* Sets the selected sort item (either by key or
|
|
115902
|
+
* Sets the selected sort item (either by key, item id or item instance).
|
|
114523
115903
|
*/
|
|
114524
115904
|
setSelectedSortItem(
|
|
114525
115905
|
/**
|
|
114526
|
-
* The selected item
|
|
115906
|
+
* The selected item, the item's string key or the item id
|
|
114527
115907
|
*/
|
|
114528
115908
|
vItemOrKey: sap.m.ViewSettingsItem | string
|
|
114529
115909
|
): this;
|
|
@@ -115763,6 +117143,55 @@ declare namespace sap {
|
|
|
115763
117143
|
*/
|
|
115764
117144
|
oListener?: object
|
|
115765
117145
|
): this;
|
|
117146
|
+
/**
|
|
117147
|
+
* @SINCE 1.101
|
|
117148
|
+
*
|
|
117149
|
+
* Attaches event handler `fnFunction` to the {@link #event:navigationChange navigationChange} event of
|
|
117150
|
+
* this `sap.m.Wizard`.
|
|
117151
|
+
*
|
|
117152
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
117153
|
+
* otherwise it will be bound to this `sap.m.Wizard` itself.
|
|
117154
|
+
*
|
|
117155
|
+
* This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
|
|
117156
|
+
* or scrolling through the steps.
|
|
117157
|
+
*/
|
|
117158
|
+
attachNavigationChange(
|
|
117159
|
+
/**
|
|
117160
|
+
* An application-specific payload object that will be passed to the event handler along with the event
|
|
117161
|
+
* object when firing the event
|
|
117162
|
+
*/
|
|
117163
|
+
oData: object,
|
|
117164
|
+
/**
|
|
117165
|
+
* The function to be called when the event occurs
|
|
117166
|
+
*/
|
|
117167
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
117168
|
+
/**
|
|
117169
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Wizard` itself
|
|
117170
|
+
*/
|
|
117171
|
+
oListener?: object
|
|
117172
|
+
): this;
|
|
117173
|
+
/**
|
|
117174
|
+
* @SINCE 1.101
|
|
117175
|
+
*
|
|
117176
|
+
* Attaches event handler `fnFunction` to the {@link #event:navigationChange navigationChange} event of
|
|
117177
|
+
* this `sap.m.Wizard`.
|
|
117178
|
+
*
|
|
117179
|
+
* When called, the context of the event handler (its `this`) will be bound to `oListener` if specified,
|
|
117180
|
+
* otherwise it will be bound to this `sap.m.Wizard` itself.
|
|
117181
|
+
*
|
|
117182
|
+
* This event is fired when the the current visible step is changed by either taping on the `WizardProgressNavigator`
|
|
117183
|
+
* or scrolling through the steps.
|
|
117184
|
+
*/
|
|
117185
|
+
attachNavigationChange(
|
|
117186
|
+
/**
|
|
117187
|
+
* The function to be called when the event occurs
|
|
117188
|
+
*/
|
|
117189
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
117190
|
+
/**
|
|
117191
|
+
* Context object to call the event handler with. Defaults to this `sap.m.Wizard` itself
|
|
117192
|
+
*/
|
|
117193
|
+
oListener?: object
|
|
117194
|
+
): this;
|
|
115766
117195
|
/**
|
|
115767
117196
|
* Attaches event handler `fnFunction` to the {@link #event:stepActivate stepActivate} event of this `sap.m.Wizard`.
|
|
115768
117197
|
*
|
|
@@ -115823,6 +117252,24 @@ declare namespace sap {
|
|
|
115823
117252
|
*/
|
|
115824
117253
|
oListener?: object
|
|
115825
117254
|
): this;
|
|
117255
|
+
/**
|
|
117256
|
+
* @SINCE 1.101
|
|
117257
|
+
*
|
|
117258
|
+
* Detaches event handler `fnFunction` from the {@link #event:navigationChange navigationChange} event of
|
|
117259
|
+
* this `sap.m.Wizard`.
|
|
117260
|
+
*
|
|
117261
|
+
* The passed function and listener object must match the ones used for event registration.
|
|
117262
|
+
*/
|
|
117263
|
+
detachNavigationChange(
|
|
117264
|
+
/**
|
|
117265
|
+
* The function to be called, when the event occurs
|
|
117266
|
+
*/
|
|
117267
|
+
fnFunction: (p1: sap.ui.base.Event) => void,
|
|
117268
|
+
/**
|
|
117269
|
+
* Context object on which the given function had to be called
|
|
117270
|
+
*/
|
|
117271
|
+
oListener?: object
|
|
117272
|
+
): this;
|
|
115826
117273
|
/**
|
|
115827
117274
|
* Detaches event handler `fnFunction` from the {@link #event:stepActivate stepActivate} event of this `sap.m.Wizard`.
|
|
115828
117275
|
*
|
|
@@ -115861,6 +117308,22 @@ declare namespace sap {
|
|
|
115861
117308
|
*/
|
|
115862
117309
|
mParameters?: object
|
|
115863
117310
|
): this;
|
|
117311
|
+
/**
|
|
117312
|
+
* @SINCE 1.101
|
|
117313
|
+
*
|
|
117314
|
+
* Fires event {@link #event:navigationChange navigationChange} to attached listeners.
|
|
117315
|
+
*/
|
|
117316
|
+
fireNavigationChange(
|
|
117317
|
+
/**
|
|
117318
|
+
* Parameters to pass along with the event
|
|
117319
|
+
*/
|
|
117320
|
+
mParameters?: {
|
|
117321
|
+
/**
|
|
117322
|
+
* The newly selected step.
|
|
117323
|
+
*/
|
|
117324
|
+
step?: sap.m.WizardStep;
|
|
117325
|
+
}
|
|
117326
|
+
): this;
|
|
115864
117327
|
/**
|
|
115865
117328
|
* Fires event {@link #event:stepActivate stepActivate} to attached listeners.
|
|
115866
117329
|
*/
|
|
@@ -115926,7 +117389,7 @@ declare namespace sap {
|
|
|
115926
117389
|
*/
|
|
115927
117390
|
getProgressStep(): sap.m.WizardStep;
|
|
115928
117391
|
/**
|
|
115929
|
-
* @
|
|
117392
|
+
* @SINCE 1.84
|
|
115930
117393
|
*
|
|
115931
117394
|
* Gets current value of property {@link #getRenderMode renderMode}.
|
|
115932
117395
|
*
|
|
@@ -116066,7 +117529,7 @@ declare namespace sap {
|
|
|
116066
117529
|
sHeight?: sap.ui.core.CSSSize
|
|
116067
117530
|
): this;
|
|
116068
117531
|
/**
|
|
116069
|
-
* @
|
|
117532
|
+
* @SINCE 1.84
|
|
116070
117533
|
*
|
|
116071
117534
|
* Sets a new value for property {@link #getRenderMode renderMode}.
|
|
116072
117535
|
*
|
|
@@ -117366,12 +118829,14 @@ declare namespace sap {
|
|
|
117366
118829
|
*/
|
|
117367
118830
|
HeaderMode = "HeaderMode",
|
|
117368
118831
|
/**
|
|
118832
|
+
* @SINCE 1.96
|
|
117369
118833
|
* @EXPERIMENTAL (since 1.96)
|
|
117370
118834
|
*
|
|
117371
118835
|
* Icon mode.
|
|
117372
118836
|
*
|
|
117373
|
-
* GenericTile displays a combination of icon and header title.
|
|
117374
|
-
*
|
|
118837
|
+
* GenericTile displays a combination of icon and header title.
|
|
118838
|
+
*
|
|
118839
|
+
* It is applicable only for the OneByOne FrameType and TwoByHalf FrameType.
|
|
117375
118840
|
*/
|
|
117376
118841
|
IconMode = "IconMode",
|
|
117377
118842
|
/**
|
|
@@ -117672,9 +119137,9 @@ declare namespace sap {
|
|
|
117672
119137
|
*/
|
|
117673
119138
|
SimpleCalendar = "sapIllus-SimpleCalendar",
|
|
117674
119139
|
/**
|
|
117675
|
-
* "Simple
|
|
119140
|
+
* "Simple CheckMark" illustration type.
|
|
117676
119141
|
*/
|
|
117677
|
-
|
|
119142
|
+
SimpleCheckMark = "sapIllus-SimpleCheckMark",
|
|
117678
119143
|
/**
|
|
117679
119144
|
* "Simple Connection" illustration type.
|
|
117680
119145
|
*/
|
|
@@ -117723,6 +119188,18 @@ declare namespace sap {
|
|
|
117723
119188
|
* "Sort Column" illustration type.
|
|
117724
119189
|
*/
|
|
117725
119190
|
SortColumn = "sapIllus-SortColumn",
|
|
119191
|
+
/**
|
|
119192
|
+
* "Success Balloon" illustration type.
|
|
119193
|
+
*/
|
|
119194
|
+
SuccessBalloon = "sapIllus-SuccessBalloon",
|
|
119195
|
+
/**
|
|
119196
|
+
* "Success CheckMark" illustration type.
|
|
119197
|
+
*/
|
|
119198
|
+
SuccessCheckMark = "sapIllus-SuccessCheckMark",
|
|
119199
|
+
/**
|
|
119200
|
+
* "Success HighFive" illustration type.
|
|
119201
|
+
*/
|
|
119202
|
+
SuccessHighFive = "sapIllus-SuccessHighFive",
|
|
117726
119203
|
/**
|
|
117727
119204
|
* "Success Screen" illustration type.
|
|
117728
119205
|
*/
|
|
@@ -117735,6 +119212,10 @@ declare namespace sap {
|
|
|
117735
119212
|
* "Unable To Load" illustration type.
|
|
117736
119213
|
*/
|
|
117737
119214
|
UnableToLoad = "sapIllus-UnableToLoad",
|
|
119215
|
+
/**
|
|
119216
|
+
* "Unable To Load Image" illustration type.
|
|
119217
|
+
*/
|
|
119218
|
+
UnableToLoadImage = "sapIllus-UnableToLoadImage",
|
|
117738
119219
|
/**
|
|
117739
119220
|
* "Unable To Upload" illustration type.
|
|
117740
119221
|
*/
|
|
@@ -118807,6 +120288,14 @@ declare namespace sap {
|
|
|
118807
120288
|
* The range will be selected from a calendar.
|
|
118808
120289
|
*/
|
|
118809
120290
|
DATERANGE = "DATERANGE",
|
|
120291
|
+
/**
|
|
120292
|
+
* The date and time will be selected from a calendar and time picker.
|
|
120293
|
+
*/
|
|
120294
|
+
DATETIME = "DATETIME",
|
|
120295
|
+
/**
|
|
120296
|
+
* The range will be selected from two DateTimePicker controls.
|
|
120297
|
+
*/
|
|
120298
|
+
DATETIMERANGE = "DATETIMERANGE",
|
|
118810
120299
|
/**
|
|
118811
120300
|
* The range will start from the date selected from a calendar and ends with the last day of the current
|
|
118812
120301
|
* year.
|
|
@@ -118832,6 +120321,10 @@ declare namespace sap {
|
|
|
118832
120321
|
* The range will start from a date selected from a calendar.
|
|
118833
120322
|
*/
|
|
118834
120323
|
FROM = "FROM",
|
|
120324
|
+
/**
|
|
120325
|
+
* The range will start from a date and time selected from a calendar and time picker.
|
|
120326
|
+
*/
|
|
120327
|
+
FROMDATETIME = "FROMDATETIME",
|
|
118835
120328
|
/**
|
|
118836
120329
|
* The date will be the last day of the current month.
|
|
118837
120330
|
*/
|
|
@@ -118940,6 +120433,10 @@ declare namespace sap {
|
|
|
118940
120433
|
* The range will contain a month selected from a MonthPicker.
|
|
118941
120434
|
*/
|
|
118942
120435
|
SPECIFICMONTH = "SPECIFICMONTH",
|
|
120436
|
+
/**
|
|
120437
|
+
* The range will contain a month in exact year selected from a MonthPicker.
|
|
120438
|
+
*/
|
|
120439
|
+
SPECIFICMONTHINYEAR = "SPECIFICMONTHINYEAR",
|
|
118943
120440
|
/**
|
|
118944
120441
|
* The range will contain the days in the current month.
|
|
118945
120442
|
*/
|
|
@@ -118960,6 +120457,10 @@ declare namespace sap {
|
|
|
118960
120457
|
* The range will end in a date selected from a calendar.
|
|
118961
120458
|
*/
|
|
118962
120459
|
TO = "TO",
|
|
120460
|
+
/**
|
|
120461
|
+
* The range will end in a date and time selected from a calendar and time picker.
|
|
120462
|
+
*/
|
|
120463
|
+
TODATETIME = "TODATETIME",
|
|
118963
120464
|
/**
|
|
118964
120465
|
* The date will be the day of selection.
|
|
118965
120466
|
*/
|
|
@@ -119563,8 +121064,12 @@ declare namespace sap {
|
|
|
119563
121064
|
|
|
119564
121065
|
"sap/m/InputBase": undefined;
|
|
119565
121066
|
|
|
121067
|
+
"sap/m/InputBaseRenderer": undefined;
|
|
121068
|
+
|
|
119566
121069
|
"sap/m/InputListItem": undefined;
|
|
119567
121070
|
|
|
121071
|
+
"sap/m/InputRenderer": undefined;
|
|
121072
|
+
|
|
119568
121073
|
"sap/m/InstanceManager": undefined;
|
|
119569
121074
|
|
|
119570
121075
|
"sap/m/Label": undefined;
|