@openui5/ts-types-esm 1.99.1 → 1.102.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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.99.1
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare module "sap/ui/table/library" {
4
4
  import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
@@ -233,6 +233,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
233
233
  * with the information contained in `oClassInfo`.
234
234
  *
235
235
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Column.extend}.
236
+ *
237
+ * @returns Created class / constructor function
236
238
  */
237
239
  static extend<T extends Record<string, unknown>>(
238
240
  /**
@@ -251,12 +253,16 @@ declare module "sap/ui/table/AnalyticalColumn" {
251
253
  ): Function;
252
254
  /**
253
255
  * Returns a metadata object for class sap.ui.table.AnalyticalColumn.
256
+ *
257
+ * @returns Metadata object describing this class
254
258
  */
255
259
  static getMetadata(): ElementMetadata;
256
260
  /**
257
261
  * Gets current value of property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
258
262
  *
259
263
  * If the column is grouped, this formatter is used to format the value in the group header
264
+ *
265
+ * @returns Value of property `groupHeaderFormatter`
260
266
  */
261
267
  getGroupHeaderFormatter(): any;
262
268
  /**
@@ -266,6 +272,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
266
272
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
267
273
  *
268
274
  * Default value is `false`.
275
+ *
276
+ * @returns Value of property `inResult`
269
277
  */
270
278
  getInResult(): boolean;
271
279
  /**
@@ -273,6 +281,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
273
281
  *
274
282
  * Defines the primary model property which is used inside the Column. In case of the analytical extension
275
283
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
284
+ *
285
+ * @returns Value of property `leadingProperty`
276
286
  */
277
287
  getLeadingProperty(): string;
278
288
  /**
@@ -282,6 +292,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
282
292
  * has the same value for every rows within the group.
283
293
  *
284
294
  * Default value is `false`.
295
+ *
296
+ * @returns Value of property `showIfGrouped`
285
297
  */
286
298
  getShowIfGrouped(): boolean;
287
299
  /**
@@ -290,24 +302,18 @@ declare module "sap/ui/table/AnalyticalColumn" {
290
302
  * If defined a sum for this column is calculated
291
303
  *
292
304
  * Default value is `false`.
293
- */
294
- getSummed(): boolean;
295
- /**
296
- * Returns the information whether the column is groupable.
297
305
  *
298
- * The column is groupable only if the following conditions are fulfilled:
299
- * - The column must be child of an `AnalyticalTable`.
300
- * - The `rows` aggregation of the table must be bound.
301
- * - The metadata of the model must be loaded.
302
- * - The column's `leadingProperty` must be a sortable and filterable dimension.
306
+ * @returns Value of property `summed`
303
307
  */
304
- isGroupable(): boolean;
308
+ getSummed(): boolean;
305
309
  /**
306
310
  * Sets a new value for property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
307
311
  *
308
312
  * If the column is grouped, this formatter is used to format the value in the group header
309
313
  *
310
314
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
315
+ *
316
+ * @returns Reference to `this` in order to allow method chaining
311
317
  */
312
318
  setGroupHeaderFormatter(
313
319
  /**
@@ -324,6 +330,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
324
330
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
325
331
  *
326
332
  * Default value is `false`.
333
+ *
334
+ * @returns Reference to `this` in order to allow method chaining
327
335
  */
328
336
  setInResult(
329
337
  /**
@@ -338,6 +346,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
338
346
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
339
347
  *
340
348
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
349
+ *
350
+ * @returns Reference to `this` in order to allow method chaining
341
351
  */
342
352
  setLeadingProperty(
343
353
  /**
@@ -354,6 +364,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
354
364
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
355
365
  *
356
366
  * Default value is `false`.
367
+ *
368
+ * @returns Reference to `this` in order to allow method chaining
357
369
  */
358
370
  setShowIfGrouped(
359
371
  /**
@@ -369,6 +381,8 @@ declare module "sap/ui/table/AnalyticalColumn" {
369
381
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
370
382
  *
371
383
  * Default value is `false`.
384
+ *
385
+ * @returns Reference to `this` in order to allow method chaining
372
386
  */
373
387
  setSummed(
374
388
  /**
@@ -388,24 +402,24 @@ declare module "sap/ui/table/AnalyticalColumn" {
388
402
  /**
389
403
  * If defined a sum for this column is calculated
390
404
  */
391
- summed?: boolean | PropertyBindingInfo;
405
+ summed?: boolean | PropertyBindingInfo | `{${string}}`;
392
406
 
393
407
  /**
394
408
  * Specifies that the dimension referred to by the column shall be included in the granularity of the data
395
409
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
396
410
  */
397
- inResult?: boolean | PropertyBindingInfo;
411
+ inResult?: boolean | PropertyBindingInfo | `{${string}}`;
398
412
 
399
413
  /**
400
414
  * Specifies whether the column is displayed within the table even if it is grouped or not. A grouped column
401
415
  * has the same value for every rows within the group.
402
416
  */
403
- showIfGrouped?: boolean | PropertyBindingInfo;
417
+ showIfGrouped?: boolean | PropertyBindingInfo | `{${string}}`;
404
418
 
405
419
  /**
406
420
  * If the column is grouped, this formatter is used to format the value in the group header
407
421
  */
408
- groupHeaderFormatter?: any | PropertyBindingInfo;
422
+ groupHeaderFormatter?: any | PropertyBindingInfo | `{${string}}`;
409
423
  }
410
424
  }
411
425
 
@@ -465,6 +479,8 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
465
479
  * it with the information contained in `oClassInfo`.
466
480
  *
467
481
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.ColumnMenu.extend}.
482
+ *
483
+ * @returns Created class / constructor function
468
484
  */
469
485
  static extend<T extends Record<string, unknown>>(
470
486
  /**
@@ -483,6 +499,8 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
483
499
  ): Function;
484
500
  /**
485
501
  * Returns a metadata object for class sap.ui.table.AnalyticalColumnMenu.
502
+ *
503
+ * @returns Metadata object describing this class
486
504
  */
487
505
  static getMetadata(): ElementMetadata;
488
506
  }
@@ -553,6 +571,8 @@ declare module "sap/ui/table/AnalyticalTable" {
553
571
  * the information contained in `oClassInfo`.
554
572
  *
555
573
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Table.extend}.
574
+ *
575
+ * @returns Created class / constructor function
556
576
  */
557
577
  static extend<T extends Record<string, unknown>>(
558
578
  /**
@@ -571,6 +591,8 @@ declare module "sap/ui/table/AnalyticalTable" {
571
591
  ): Function;
572
592
  /**
573
593
  * Returns a metadata object for class sap.ui.table.AnalyticalTable.
594
+ *
595
+ * @returns Metadata object describing this class
574
596
  */
575
597
  static getMetadata(): ElementMetadata;
576
598
  /**
@@ -581,6 +603,8 @@ declare module "sap/ui/table/AnalyticalTable" {
581
603
  *
582
604
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
583
605
  * To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
606
+ *
607
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
584
608
  */
585
609
  addSelectionInterval(
586
610
  /**
@@ -594,6 +618,8 @@ declare module "sap/ui/table/AnalyticalTable" {
594
618
  ): this;
595
619
  /**
596
620
  * Collapses one or more rows.
621
+ *
622
+ * @returns Reference to `this` in order to allow method chaining
597
623
  */
598
624
  collapse(
599
625
  /**
@@ -603,10 +629,14 @@ declare module "sap/ui/table/AnalyticalTable" {
603
629
  ): this;
604
630
  /**
605
631
  * Collapses all nodes (and their child nodes if collapseRecursive is activated).
632
+ *
633
+ * @returns Reference to `this` in order to allow method chaining
606
634
  */
607
635
  collapseAll(): this;
608
636
  /**
609
637
  * Expands one or more rows.
638
+ *
639
+ * @returns Reference to `this` in order to allow method chaining
610
640
  */
611
641
  expand(
612
642
  /**
@@ -620,6 +650,8 @@ declare module "sap/ui/table/AnalyticalTable" {
620
650
  * Expands all nodes. The current selection is removed, and the table scrolls back to the top. If this method
621
651
  * is called, not all groups might be loaded. If the user then scrolls to the bottom of the table, additional
622
652
  * groups are loaded, which increases the scroll range, and the scroll thumb moves up.
653
+ *
654
+ * @returns Reference to `this` in order to allow method chaining
623
655
  */
624
656
  expandAll(): this;
625
657
  /**
@@ -647,6 +679,8 @@ declare module "sap/ui/table/AnalyticalTable" {
647
679
  *
648
680
  *
649
681
  * Default value is `"Bundled"`.
682
+ *
683
+ * @returns Value of property `autoExpandMode`
650
684
  */
651
685
  getAutoExpandMode(): string;
652
686
  /**
@@ -673,6 +707,8 @@ declare module "sap/ui/table/AnalyticalTable" {
673
707
  *
674
708
  *
675
709
  * Default value is `true`.
710
+ *
711
+ * @returns Value of property `collapseRecursive`
676
712
  */
677
713
  getCollapseRecursive(): boolean;
678
714
  /**
@@ -680,10 +716,14 @@ declare module "sap/ui/table/AnalyticalTable" {
680
716
  *
681
717
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
682
718
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
719
+ *
720
+ * @returns Value of property `columnVisibilityMenuSorter`
683
721
  */
684
722
  getColumnVisibilityMenuSorter(): any;
685
723
  /**
686
724
  * Returns the context of a row by its index.
725
+ *
726
+ * @returns The context of a row by its index
687
727
  */
688
728
  getContextByIndex(
689
729
  /**
@@ -697,6 +737,8 @@ declare module "sap/ui/table/AnalyticalTable" {
697
737
  * Gets current value of property {@link #getDirty dirty}.
698
738
  *
699
739
  * If dirty the content of the Table will be overlayed.
740
+ *
741
+ * @returns Value of property `dirty`
700
742
  */
701
743
  getDirty(): boolean;
702
744
  /**
@@ -735,6 +777,8 @@ declare module "sap/ui/table/AnalyticalTable" {
735
777
  *
736
778
  *
737
779
  * Default value is `0`.
780
+ *
781
+ * @returns Value of property `numberOfExpandedLevels`
738
782
  */
739
783
  getNumberOfExpandedLevels(): int;
740
784
  /**
@@ -742,6 +786,8 @@ declare module "sap/ui/table/AnalyticalTable" {
742
786
  *
743
787
  * The lead selection index is, among other things, used to determine the start/end of a selection range,
744
788
  * when using Shift-Click to select multiple entries at once.
789
+ *
790
+ * @returns Current lead selection index.
745
791
  */
746
792
  getSelectedIndex(): int;
747
793
  /**
@@ -750,6 +796,8 @@ declare module "sap/ui/table/AnalyticalTable" {
750
796
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
751
797
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
752
798
  * yet loaded" to the client), will not be returned.
799
+ *
800
+ * @returns an array containing all selected indices
753
801
  */
754
802
  getSelectedIndices(): int[];
755
803
  /**
@@ -777,14 +825,20 @@ declare module "sap/ui/table/AnalyticalTable" {
777
825
  *
778
826
  *
779
827
  * Default value is `false`.
828
+ *
829
+ * @returns Value of property `sumOnTop`
780
830
  */
781
831
  getSumOnTop(): boolean;
782
832
  /**
783
833
  * Returns the total size of the data entries.
834
+ *
835
+ * @returns The total size of the data entries
784
836
  */
785
837
  getTotalSize(): int;
786
838
  /**
787
839
  * Checks whether the row is expanded or collapsed.
840
+ *
841
+ * @returns `true` if the row is expanded, `false` if it is collapsed
788
842
  */
789
843
  isExpanded(
790
844
  /**
@@ -794,6 +848,8 @@ declare module "sap/ui/table/AnalyticalTable" {
794
848
  ): boolean;
795
849
  /**
796
850
  * Checks if the row at the given index is selected.
851
+ *
852
+ * @returns true if the index is selected, false otherwise
797
853
  */
798
854
  isIndexSelected(
799
855
  /**
@@ -806,6 +862,8 @@ declare module "sap/ui/table/AnalyticalTable" {
806
862
  * with their absolute row index. Please be aware that the absolute row index only applies to the tree which
807
863
  * is visualized by the `AnalyticalTable` control. Invisible nodes (collapsed child nodes) will not be taken
808
864
  * into account.
865
+ *
866
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
809
867
  */
810
868
  removeSelectionInterval(
811
869
  /**
@@ -837,6 +895,8 @@ declare module "sap/ui/table/AnalyticalTable" {
837
895
  * on the client are selected. In addition all subsequent rows/tree nodes, which will be paged into view
838
896
  * are also immediately selected. However, due to obvious performance/network traffic reasons, the SelectAll
839
897
  * function will NOT retrieve any data from the backend.
898
+ *
899
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
840
900
  */
841
901
  selectAll(): this;
842
902
  /**
@@ -866,6 +926,8 @@ declare module "sap/ui/table/AnalyticalTable" {
866
926
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
867
927
  *
868
928
  * Default value is `"Bundled"`.
929
+ *
930
+ * @returns Reference to `this` in order to allow method chaining
869
931
  */
870
932
  setAutoExpandMode(
871
933
  /**
@@ -899,6 +961,8 @@ declare module "sap/ui/table/AnalyticalTable" {
899
961
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
900
962
  *
901
963
  * Default value is `true`.
964
+ *
965
+ * @returns Reference to `this` in order to allow method chaining
902
966
  */
903
967
  setCollapseRecursive(
904
968
  /**
@@ -913,6 +977,8 @@ declare module "sap/ui/table/AnalyticalTable" {
913
977
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
914
978
  *
915
979
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
980
+ *
981
+ * @returns Reference to `this` in order to allow method chaining
916
982
  */
917
983
  setColumnVisibilityMenuSorter(
918
984
  /**
@@ -928,6 +994,8 @@ declare module "sap/ui/table/AnalyticalTable" {
928
994
  * If dirty the content of the Table will be overlayed.
929
995
  *
930
996
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
997
+ *
998
+ * @returns Reference to `this` in order to allow method chaining
931
999
  */
932
1000
  setDirty(
933
1001
  /**
@@ -939,12 +1007,16 @@ declare module "sap/ui/table/AnalyticalTable" {
939
1007
  * @deprecated (since 1.28)
940
1008
  *
941
1009
  * The property `enableGrouping` is not supported by the `AnalyticalTable` control.
1010
+ *
1011
+ * @returns Reference to `this` in order to allow method chaining
942
1012
  */
943
1013
  setEnableGrouping(bValue: boolean): this;
944
1014
  /**
945
1015
  * @deprecated (since 1.28)
946
1016
  *
947
1017
  * The `groupBy` association is not supported by the `AnalyticalTable` control.
1018
+ *
1019
+ * @returns Reference to `this` in order to allow method chaining
948
1020
  */
949
1021
  setGroupBy(oGroupBy: ID | Column): this;
950
1022
  /**
@@ -973,6 +1045,8 @@ declare module "sap/ui/table/AnalyticalTable" {
973
1045
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
974
1046
  *
975
1047
  * Default value is `0`.
1048
+ *
1049
+ * @returns Reference to `this` in order to allow method chaining
976
1050
  */
977
1051
  setNumberOfExpandedLevels(
978
1052
  /**
@@ -984,6 +1058,8 @@ declare module "sap/ui/table/AnalyticalTable" {
984
1058
  * In an `AnalyticalTable` control you can only select indices, which correspond to the currently visualized
985
1059
  * tree. Invisible nodes (e.g. collapsed child nodes) cannot be selected via Index, because they do not
986
1060
  * correspond to an `AnalyticalTable` row.
1061
+ *
1062
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
987
1063
  */
988
1064
  setSelectedIndex(
989
1065
  /**
@@ -996,6 +1072,8 @@ declare module "sap/ui/table/AnalyticalTable" {
996
1072
  *
997
1073
  * **Note:** The previous selection will be lost/overridden. If this is not the required behavior, please
998
1074
  * use `addSelectionInterval` and `removeSelectionInterval`.
1075
+ *
1076
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
999
1077
  */
1000
1078
  setSelectionInterval(
1001
1079
  /**
@@ -1034,6 +1112,8 @@ declare module "sap/ui/table/AnalyticalTable" {
1034
1112
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1035
1113
  *
1036
1114
  * Default value is `false`.
1115
+ *
1116
+ * @returns Reference to `this` in order to allow method chaining
1037
1117
  */
1038
1118
  setSumOnTop(
1039
1119
  /**
@@ -1071,7 +1151,7 @@ declare module "sap/ui/table/AnalyticalTable" {
1071
1151
  * });
1072
1152
  * ```
1073
1153
  */
1074
- sumOnTop?: boolean | PropertyBindingInfo;
1154
+ sumOnTop?: boolean | PropertyBindingInfo | `{${string}}`;
1075
1155
 
1076
1156
  /**
1077
1157
  * @deprecated (since 1.44) - replaced by the `numberOfExpandedLevels` binding parameter
@@ -1093,7 +1173,7 @@ declare module "sap/ui/table/AnalyticalTable" {
1093
1173
  * });
1094
1174
  * ```
1095
1175
  */
1096
- numberOfExpandedLevels?: int | PropertyBindingInfo;
1176
+ numberOfExpandedLevels?: int | PropertyBindingInfo | `{${string}}`;
1097
1177
 
1098
1178
  /**
1099
1179
  * @deprecated (since 1.44) - replaced by the `autoExpandMode` binding parameter
@@ -1122,7 +1202,7 @@ declare module "sap/ui/table/AnalyticalTable" {
1122
1202
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
1123
1203
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
1124
1204
  */
1125
- columnVisibilityMenuSorter?: any | PropertyBindingInfo;
1205
+ columnVisibilityMenuSorter?: any | PropertyBindingInfo | `{${string}}`;
1126
1206
 
1127
1207
  /**
1128
1208
  * @deprecated (since 1.76) - replaced by the `collapseRecursive` binding parameter
@@ -1144,14 +1224,14 @@ declare module "sap/ui/table/AnalyticalTable" {
1144
1224
  * });
1145
1225
  * ```
1146
1226
  */
1147
- collapseRecursive?: boolean | PropertyBindingInfo;
1227
+ collapseRecursive?: boolean | PropertyBindingInfo | `{${string}}`;
1148
1228
 
1149
1229
  /**
1150
1230
  * @deprecated (since 1.21.2) - replaced by {@link sap.ui.table.Table#setShowOverlay}
1151
1231
  *
1152
1232
  * If dirty the content of the Table will be overlayed.
1153
1233
  */
1154
- dirty?: boolean | PropertyBindingInfo;
1234
+ dirty?: boolean | PropertyBindingInfo | `{${string}}`;
1155
1235
  }
1156
1236
  }
1157
1237
 
@@ -1164,11 +1244,7 @@ declare module "sap/ui/table/Column" {
1164
1244
 
1165
1245
  import Menu from "sap/ui/unified/Menu";
1166
1246
 
1167
- import {
1168
- IColumnHeaderMenu,
1169
- HorizontalAlign,
1170
- CSSSize,
1171
- } from "sap/ui/core/library";
1247
+ import { HorizontalAlign, CSSSize } from "sap/ui/core/library";
1172
1248
 
1173
1249
  import ElementMetadata from "sap/ui/core/ElementMetadata";
1174
1250
 
@@ -1219,6 +1295,8 @@ declare module "sap/ui/table/Column" {
1219
1295
  * contained in `oClassInfo`.
1220
1296
  *
1221
1297
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
1298
+ *
1299
+ * @returns Created class / constructor function
1222
1300
  */
1223
1301
  static extend<T extends Record<string, unknown>>(
1224
1302
  /**
@@ -1237,12 +1315,16 @@ declare module "sap/ui/table/Column" {
1237
1315
  ): Function;
1238
1316
  /**
1239
1317
  * Returns a metadata object for class sap.ui.table.Column.
1318
+ *
1319
+ * @returns Metadata object describing this class
1240
1320
  */
1241
1321
  static getMetadata(): ElementMetadata;
1242
1322
  /**
1243
1323
  * @SINCE 1.13.1
1244
1324
  *
1245
1325
  * Adds some multiLabel to the aggregation {@link #getMultiLabels multiLabels}.
1326
+ *
1327
+ * @returns Reference to `this` in order to allow method chaining
1246
1328
  */
1247
1329
  addMultiLabel(
1248
1330
  /**
@@ -1260,6 +1342,8 @@ declare module "sap/ui/table/Column" {
1260
1342
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
1261
1343
  *
1262
1344
  * Fires before the column menu is opened.
1345
+ *
1346
+ * @returns Reference to `this` in order to allow method chaining
1263
1347
  */
1264
1348
  attachColumnMenuOpen(
1265
1349
  /**
@@ -1286,6 +1370,8 @@ declare module "sap/ui/table/Column" {
1286
1370
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
1287
1371
  *
1288
1372
  * Fires before the column menu is opened.
1373
+ *
1374
+ * @returns Reference to `this` in order to allow method chaining
1289
1375
  */
1290
1376
  attachColumnMenuOpen(
1291
1377
  /**
@@ -1299,20 +1385,28 @@ declare module "sap/ui/table/Column" {
1299
1385
  ): this;
1300
1386
  /**
1301
1387
  * Destroys the label in the aggregation {@link #getLabel label}.
1388
+ *
1389
+ * @returns Reference to `this` in order to allow method chaining
1302
1390
  */
1303
1391
  destroyLabel(): this;
1304
1392
  /**
1305
1393
  * Destroys the menu in the aggregation {@link #getMenu menu}.
1394
+ *
1395
+ * @returns Reference to `this` in order to allow method chaining
1306
1396
  */
1307
1397
  destroyMenu(): this;
1308
1398
  /**
1309
1399
  * @SINCE 1.13.1
1310
1400
  *
1311
1401
  * Destroys all the multiLabels in the aggregation {@link #getMultiLabels multiLabels}.
1402
+ *
1403
+ * @returns Reference to `this` in order to allow method chaining
1312
1404
  */
1313
1405
  destroyMultiLabels(): this;
1314
1406
  /**
1315
1407
  * Destroys the template in the aggregation {@link #getTemplate template}.
1408
+ *
1409
+ * @returns Reference to `this` in order to allow method chaining
1316
1410
  */
1317
1411
  destroyTemplate(): this;
1318
1412
  /**
@@ -1322,6 +1416,8 @@ declare module "sap/ui/table/Column" {
1322
1416
  * `sap.ui.table.Column`.
1323
1417
  *
1324
1418
  * The passed function and listener object must match the ones used for event registration.
1419
+ *
1420
+ * @returns Reference to `this` in order to allow method chaining
1325
1421
  */
1326
1422
  detachColumnMenuOpen(
1327
1423
  /**
@@ -1340,6 +1436,8 @@ declare module "sap/ui/table/Column" {
1340
1436
  *
1341
1437
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
1342
1438
  * event object. The return value of this method indicates whether the default action should be executed.
1439
+ *
1440
+ * @returns Whether or not to prevent the default action
1343
1441
  */
1344
1442
  fireColumnMenuOpen(
1345
1443
  /**
@@ -1364,20 +1462,17 @@ declare module "sap/ui/table/Column" {
1364
1462
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
1365
1463
  *
1366
1464
  * Default value is `false`.
1367
- */
1368
- getAutoResizable(): boolean;
1369
- /**
1370
- * @SINCE 1.98.0
1371
1465
  *
1372
- * Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association columnHeaderMenu`,
1373
- * or null.
1466
+ * @returns Value of property `autoResizable`
1374
1467
  */
1375
- getColumnHeaderMenu(): IColumnHeaderMenu;
1468
+ getAutoResizable(): boolean;
1376
1469
  /**
1377
1470
  * Gets current value of property {@link #getDefaultFilterOperator defaultFilterOperator}.
1378
1471
  *
1379
1472
  * If this property is set, the default filter operator of the column is overridden. By default `Contains`
1380
1473
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
1474
+ *
1475
+ * @returns Value of property `defaultFilterOperator`
1381
1476
  */
1382
1477
  getDefaultFilterOperator(): string;
1383
1478
  /**
@@ -1388,12 +1483,16 @@ declare module "sap/ui/table/Column" {
1388
1483
  * sap.ui.table.Table#filter}.
1389
1484
  *
1390
1485
  * Default value is `false`.
1486
+ *
1487
+ * @returns Value of property `filtered`
1391
1488
  */
1392
1489
  getFiltered(): boolean;
1393
1490
  /**
1394
1491
  * Gets current value of property {@link #getFilterOperator filterOperator}.
1395
1492
  *
1396
1493
  * Filter operator to use when filtering this column.
1494
+ *
1495
+ * @returns Value of property `filterOperator`
1397
1496
  */
1398
1497
  getFilterOperator(): string;
1399
1498
  /**
@@ -1406,6 +1505,8 @@ declare module "sap/ui/table/Column" {
1406
1505
  *
1407
1506
  * A column menu entry for filtering can only be generated if the `filterProperty` is set. The default menu
1408
1507
  * entry is a text input field.
1508
+ *
1509
+ * @returns Value of property `filterProperty`
1409
1510
  */
1410
1511
  getFilterProperty(): string;
1411
1512
  /**
@@ -1420,6 +1521,8 @@ declare module "sap/ui/table/Column" {
1420
1521
  * \{\} \}"`. Here the escaping is mandatory to avoid handling by the binding parser. As an alternative,
1421
1522
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
1422
1523
  * #setFilterType} instead.
1524
+ *
1525
+ * @returns Value of property `filterType`
1423
1526
  */
1424
1527
  getFilterType(): any;
1425
1528
  /**
@@ -1441,6 +1544,9 @@ declare module "sap/ui/table/Column" {
1441
1544
  * some..thing between
1442
1545
  * 50..100 between
1443
1546
  * ```
1547
+ *
1548
+ *
1549
+ * @returns Value of property `filterValue`
1444
1550
  */
1445
1551
  getFilterValue(): string;
1446
1552
  /**
@@ -1455,6 +1561,8 @@ declare module "sap/ui/table/Column" {
1455
1561
  * of the table.
1456
1562
  *
1457
1563
  * Default value is `true`.
1564
+ *
1565
+ * @returns Value of property `flexible`
1458
1566
  */
1459
1567
  getFlexible(): boolean;
1460
1568
  /**
@@ -1463,6 +1571,8 @@ declare module "sap/ui/table/Column" {
1463
1571
  * Indicates if the column is grouped.
1464
1572
  *
1465
1573
  * Default value is `false`.
1574
+ *
1575
+ * @returns Value of property `grouped`
1466
1576
  */
1467
1577
  getGrouped(): boolean;
1468
1578
  /**
@@ -1472,6 +1582,8 @@ declare module "sap/ui/table/Column" {
1472
1582
  * alignment. You have to set the text align directly on the template.
1473
1583
  *
1474
1584
  * Default value is `Begin`.
1585
+ *
1586
+ * @returns Value of property `hAlign`
1475
1587
  */
1476
1588
  getHAlign(): HorizontalAlign | keyof typeof HorizontalAlign;
1477
1589
  /**
@@ -1485,6 +1597,8 @@ declare module "sap/ui/table/Column" {
1485
1597
  * which are part of the header with the greatest span will be set to fixed.
1486
1598
  *
1487
1599
  * Default value is `1`.
1600
+ *
1601
+ * @returns Value of property `headerSpan`
1488
1602
  */
1489
1603
  getHeaderSpan(): any;
1490
1604
  /**
@@ -1516,6 +1630,8 @@ declare module "sap/ui/table/Column" {
1516
1630
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
1517
1631
  *
1518
1632
  * Default value is `0`.
1633
+ *
1634
+ * @returns Value of property `minWidth`
1519
1635
  */
1520
1636
  getMinWidth(): int;
1521
1637
  /**
@@ -1535,6 +1651,8 @@ declare module "sap/ui/table/Column" {
1535
1651
  * The name of the column which is used for the text representation of this column, for example, in menus.
1536
1652
  * If not set, the text from the multiLabels aggregation or the label aggregation (in that order) is used
1537
1653
  * as a fallback option.
1654
+ *
1655
+ * @returns Value of property `name`
1538
1656
  */
1539
1657
  getName(): string;
1540
1658
  /**
@@ -1544,6 +1662,8 @@ declare module "sap/ui/table/Column" {
1544
1662
  * (SHIFT + Left/Right Arrow keys)
1545
1663
  *
1546
1664
  * Default value is `true`.
1665
+ *
1666
+ * @returns Value of property `resizable`
1547
1667
  */
1548
1668
  getResizable(): boolean;
1549
1669
  /**
@@ -1554,6 +1674,8 @@ declare module "sap/ui/table/Column" {
1554
1674
  * Defines if the filter menu entry is displayed
1555
1675
  *
1556
1676
  * Default value is `true`.
1677
+ *
1678
+ * @returns Value of property `showFilterMenuEntry`
1557
1679
  */
1558
1680
  getShowFilterMenuEntry(): boolean;
1559
1681
  /**
@@ -1564,6 +1686,8 @@ declare module "sap/ui/table/Column" {
1564
1686
  * Defines if the sort menu entries are displayed
1565
1687
  *
1566
1688
  * Default value is `true`.
1689
+ *
1690
+ * @returns Value of property `showSortMenuEntry`
1567
1691
  */
1568
1692
  getShowSortMenuEntry(): boolean;
1569
1693
  /**
@@ -1573,6 +1697,8 @@ declare module "sap/ui/table/Column" {
1573
1697
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
1574
1698
  *
1575
1699
  * Default value is `false`.
1700
+ *
1701
+ * @returns Value of property `sorted`
1576
1702
  */
1577
1703
  getSorted(): boolean;
1578
1704
  /**
@@ -1582,6 +1708,8 @@ declare module "sap/ui/table/Column" {
1582
1708
  * rendered if the property `sorted` is `true`
1583
1709
  *
1584
1710
  * Default value is `Ascending`.
1711
+ *
1712
+ * @returns Value of property `sortOrder`
1585
1713
  */
1586
1714
  getSortOrder(): SortOrder | keyof typeof SortOrder;
1587
1715
  /**
@@ -1593,6 +1721,8 @@ declare module "sap/ui/table/Column" {
1593
1721
  * displayed in the same column, only one of the two can be defined as `sortProperty`.
1594
1722
  *
1595
1723
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
1724
+ *
1725
+ * @returns Value of property `sortProperty`
1596
1726
  */
1597
1727
  getSortProperty(): string;
1598
1728
  /**
@@ -1611,6 +1741,8 @@ declare module "sap/ui/table/Column" {
1611
1741
  getTemplate(): Control | string;
1612
1742
  /**
1613
1743
  * Returns a template clone. It either finds an unused clone or clones a new one from the template.
1744
+ *
1745
+ * @returns Clone of the template, or `null` if no template is defined
1614
1746
  */
1615
1747
  getTemplateClone(
1616
1748
  /**
@@ -1624,6 +1756,8 @@ declare module "sap/ui/table/Column" {
1624
1756
  * Invisible controls are not rendered.
1625
1757
  *
1626
1758
  * Default value is `true`.
1759
+ *
1760
+ * @returns Value of property `visible`
1627
1761
  */
1628
1762
  getVisible(): boolean;
1629
1763
  /**
@@ -1634,6 +1768,8 @@ declare module "sap/ui/table/Column" {
1634
1768
  * than 48px. This property can be changed by the user or by the application configuration/personalization.
1635
1769
  * If a user adjusts the column width manually, the resulting value is always set in pixels. In addition,
1636
1770
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
1771
+ *
1772
+ * @returns Value of property `width`
1637
1773
  */
1638
1774
  getWidth(): CSSSize;
1639
1775
  /**
@@ -1641,6 +1777,8 @@ declare module "sap/ui/table/Column" {
1641
1777
  *
1642
1778
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMultiLabels multiLabels}.
1643
1779
  * and returns its index if found or -1 otherwise.
1780
+ *
1781
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1644
1782
  */
1645
1783
  indexOfMultiLabel(
1646
1784
  /**
@@ -1652,6 +1790,8 @@ declare module "sap/ui/table/Column" {
1652
1790
  * @SINCE 1.13.1
1653
1791
  *
1654
1792
  * Inserts a multiLabel into the aggregation {@link #getMultiLabels multiLabels}.
1793
+ *
1794
+ * @returns Reference to `this` in order to allow method chaining
1655
1795
  */
1656
1796
  insertMultiLabel(
1657
1797
  /**
@@ -1671,12 +1811,16 @@ declare module "sap/ui/table/Column" {
1671
1811
  * Removes all the controls from the aggregation {@link #getMultiLabels multiLabels}.
1672
1812
  *
1673
1813
  * Additionally, it unregisters them from the hosting UIArea.
1814
+ *
1815
+ * @returns An array of the removed elements (might be empty)
1674
1816
  */
1675
1817
  removeAllMultiLabels(): Control[];
1676
1818
  /**
1677
1819
  * @SINCE 1.13.1
1678
1820
  *
1679
1821
  * Removes a multiLabel from the aggregation {@link #getMultiLabels multiLabels}.
1822
+ *
1823
+ * @returns The removed multiLabel or `null`
1680
1824
  */
1681
1825
  removeMultiLabel(
1682
1826
  /**
@@ -1698,6 +1842,8 @@ declare module "sap/ui/table/Column" {
1698
1842
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1699
1843
  *
1700
1844
  * Default value is `false`.
1845
+ *
1846
+ * @returns Reference to `this` in order to allow method chaining
1701
1847
  */
1702
1848
  setAutoResizable(
1703
1849
  /**
@@ -1712,6 +1858,8 @@ declare module "sap/ui/table/Column" {
1712
1858
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
1713
1859
  *
1714
1860
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1861
+ *
1862
+ * @returns Reference to `this` in order to allow method chaining
1715
1863
  */
1716
1864
  setDefaultFilterOperator(
1717
1865
  /**
@@ -1729,6 +1877,8 @@ declare module "sap/ui/table/Column" {
1729
1877
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1730
1878
  *
1731
1879
  * Default value is `false`.
1880
+ *
1881
+ * @returns Reference to `this` in order to allow method chaining
1732
1882
  */
1733
1883
  setFiltered(
1734
1884
  /**
@@ -1742,6 +1892,8 @@ declare module "sap/ui/table/Column" {
1742
1892
  * Filter operator to use when filtering this column.
1743
1893
  *
1744
1894
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1895
+ *
1896
+ * @returns Reference to `this` in order to allow method chaining
1745
1897
  */
1746
1898
  setFilterOperator(
1747
1899
  /**
@@ -1761,6 +1913,8 @@ declare module "sap/ui/table/Column" {
1761
1913
  * entry is a text input field.
1762
1914
  *
1763
1915
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1916
+ *
1917
+ * @returns Reference to `this` in order to allow method chaining
1764
1918
  */
1765
1919
  setFilterProperty(
1766
1920
  /**
@@ -1772,6 +1926,8 @@ declare module "sap/ui/table/Column" {
1772
1926
  * The filter type can be the class name of a type, an expression similar to the binding syntax, or a function.
1773
1927
  * A function receives the entered filter value as a parameter and should return the appropriate value for
1774
1928
  * the filter expression.
1929
+ *
1930
+ * @returns Reference to `this` in order to allow method chaining
1775
1931
  */
1776
1932
  setFilterType(
1777
1933
  /**
@@ -1801,6 +1957,8 @@ declare module "sap/ui/table/Column" {
1801
1957
  *
1802
1958
  *
1803
1959
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1960
+ *
1961
+ * @returns Reference to `this` in order to allow method chaining
1804
1962
  */
1805
1963
  setFilterValue(
1806
1964
  /**
@@ -1822,6 +1980,8 @@ declare module "sap/ui/table/Column" {
1822
1980
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1823
1981
  *
1824
1982
  * Default value is `true`.
1983
+ *
1984
+ * @returns Reference to `this` in order to allow method chaining
1825
1985
  */
1826
1986
  setFlexible(
1827
1987
  /**
@@ -1837,6 +1997,8 @@ declare module "sap/ui/table/Column" {
1837
1997
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1838
1998
  *
1839
1999
  * Default value is `false`.
2000
+ *
2001
+ * @returns Reference to `this` in order to allow method chaining
1840
2002
  */
1841
2003
  setGrouped(
1842
2004
  /**
@@ -1853,6 +2015,8 @@ declare module "sap/ui/table/Column" {
1853
2015
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1854
2016
  *
1855
2017
  * Default value is `Begin`.
2018
+ *
2019
+ * @returns Reference to `this` in order to allow method chaining
1856
2020
  */
1857
2021
  setHAlign(
1858
2022
  /**
@@ -1873,6 +2037,8 @@ declare module "sap/ui/table/Column" {
1873
2037
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1874
2038
  *
1875
2039
  * Default value is `1`.
2040
+ *
2041
+ * @returns Reference to `this` in order to allow method chaining
1876
2042
  */
1877
2043
  setHeaderSpan(
1878
2044
  /**
@@ -1882,6 +2048,8 @@ declare module "sap/ui/table/Column" {
1882
2048
  ): this;
1883
2049
  /**
1884
2050
  * Sets the aggregated {@link #getLabel label}.
2051
+ *
2052
+ * @returns Reference to `this` in order to allow method chaining
1885
2053
  */
1886
2054
  setLabel(
1887
2055
  /**
@@ -1891,6 +2059,8 @@ declare module "sap/ui/table/Column" {
1891
2059
  ): this;
1892
2060
  /**
1893
2061
  * Sets the aggregated {@link #getMenu menu}.
2062
+ *
2063
+ * @returns Reference to `this` in order to allow method chaining
1894
2064
  */
1895
2065
  setMenu(
1896
2066
  /**
@@ -1911,6 +2081,8 @@ declare module "sap/ui/table/Column" {
1911
2081
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1912
2082
  *
1913
2083
  * Default value is `0`.
2084
+ *
2085
+ * @returns Reference to `this` in order to allow method chaining
1914
2086
  */
1915
2087
  setMinWidth(
1916
2088
  /**
@@ -1928,6 +2100,8 @@ declare module "sap/ui/table/Column" {
1928
2100
  * as a fallback option.
1929
2101
  *
1930
2102
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2103
+ *
2104
+ * @returns Reference to `this` in order to allow method chaining
1931
2105
  */
1932
2106
  setName(
1933
2107
  /**
@@ -1944,6 +2118,8 @@ declare module "sap/ui/table/Column" {
1944
2118
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1945
2119
  *
1946
2120
  * Default value is `true`.
2121
+ *
2122
+ * @returns Reference to `this` in order to allow method chaining
1947
2123
  */
1948
2124
  setResizable(
1949
2125
  /**
@@ -1961,6 +2137,8 @@ declare module "sap/ui/table/Column" {
1961
2137
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1962
2138
  *
1963
2139
  * Default value is `true`.
2140
+ *
2141
+ * @returns Reference to `this` in order to allow method chaining
1964
2142
  */
1965
2143
  setShowFilterMenuEntry(
1966
2144
  /**
@@ -1978,6 +2156,8 @@ declare module "sap/ui/table/Column" {
1978
2156
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1979
2157
  *
1980
2158
  * Default value is `true`.
2159
+ *
2160
+ * @returns Reference to `this` in order to allow method chaining
1981
2161
  */
1982
2162
  setShowSortMenuEntry(
1983
2163
  /**
@@ -1994,6 +2174,8 @@ declare module "sap/ui/table/Column" {
1994
2174
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1995
2175
  *
1996
2176
  * Default value is `false`.
2177
+ *
2178
+ * @returns Reference to `this` in order to allow method chaining
1997
2179
  */
1998
2180
  setSorted(
1999
2181
  /**
@@ -2010,6 +2192,8 @@ declare module "sap/ui/table/Column" {
2010
2192
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2011
2193
  *
2012
2194
  * Default value is `Ascending`.
2195
+ *
2196
+ * @returns Reference to `this` in order to allow method chaining
2013
2197
  */
2014
2198
  setSortOrder(
2015
2199
  /**
@@ -2028,6 +2212,8 @@ declare module "sap/ui/table/Column" {
2028
2212
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
2029
2213
  *
2030
2214
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2215
+ *
2216
+ * @returns Reference to `this` in order to allow method chaining
2031
2217
  */
2032
2218
  setSortProperty(
2033
2219
  /**
@@ -2037,6 +2223,8 @@ declare module "sap/ui/table/Column" {
2037
2223
  ): this;
2038
2224
  /**
2039
2225
  * Sets the aggregated {@link #getTemplate template}.
2226
+ *
2227
+ * @returns Reference to `this` in order to allow method chaining
2040
2228
  */
2041
2229
  setTemplate(
2042
2230
  /**
@@ -2052,6 +2240,8 @@ declare module "sap/ui/table/Column" {
2052
2240
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2053
2241
  *
2054
2242
  * Default value is `true`.
2243
+ *
2244
+ * @returns Reference to `this` in order to allow method chaining
2055
2245
  */
2056
2246
  setVisible(
2057
2247
  /**
@@ -2069,6 +2259,8 @@ declare module "sap/ui/table/Column" {
2069
2259
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
2070
2260
  *
2071
2261
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2262
+ *
2263
+ * @returns Reference to `this` in order to allow method chaining
2072
2264
  */
2073
2265
  setWidth(
2074
2266
  /**
@@ -2078,12 +2270,16 @@ declare module "sap/ui/table/Column" {
2078
2270
  ): this;
2079
2271
  /**
2080
2272
  * Returns whether the column should be rendered.
2273
+ *
2274
+ * @returns Returns `true`, if the column should be rendered
2081
2275
  */
2082
2276
  shouldRender(): boolean;
2083
2277
  /**
2084
2278
  * @deprecated (since 1.5.1) - Please use the function "sap.ui.Table.prototype.sort".
2085
2279
  *
2086
2280
  * Sorts the current column ascending or descending.
2281
+ *
2282
+ * @returns Reference to `this` in order to allow method chaining
2087
2283
  */
2088
2284
  sort(
2089
2285
  /**
@@ -2107,7 +2303,7 @@ declare module "sap/ui/table/Column" {
2107
2303
  * If a user adjusts the column width manually, the resulting value is always set in pixels. In addition,
2108
2304
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
2109
2305
  */
2110
- width?: CSSSize | PropertyBindingInfo;
2306
+ width?: CSSSize | PropertyBindingInfo | `{${string}}`;
2111
2307
 
2112
2308
  /**
2113
2309
  * @SINCE 1.44.1
@@ -2117,7 +2313,7 @@ declare module "sap/ui/table/Column" {
2117
2313
  * If a user adjusts the column width manually, the column width can become smaller. Minimal column width
2118
2314
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
2119
2315
  */
2120
- minWidth?: int | PropertyBindingInfo;
2316
+ minWidth?: int | PropertyBindingInfo | `{${string}}`;
2121
2317
 
2122
2318
  /**
2123
2319
  * @deprecated (since 1.44) - this property has no effect. Use the property `minWidth` in combination with
@@ -2128,13 +2324,13 @@ declare module "sap/ui/table/Column" {
2128
2324
  * width. If all columns are set to not be flexible, an extra "dummy" column will be created at the end
2129
2325
  * of the table.
2130
2326
  */
2131
- flexible?: boolean | PropertyBindingInfo;
2327
+ flexible?: boolean | PropertyBindingInfo | `{${string}}`;
2132
2328
 
2133
2329
  /**
2134
2330
  * If set to true, the column can be resized either using the resize bar (by mouse) or using the keyboard
2135
2331
  * (SHIFT + Left/Right Arrow keys)
2136
2332
  */
2137
- resizable?: boolean | PropertyBindingInfo;
2333
+ resizable?: boolean | PropertyBindingInfo | `{${string}}`;
2138
2334
 
2139
2335
  /**
2140
2336
  * Horizontal alignment of the column content. Controls with a text align do not inherit the horizontal
@@ -2142,19 +2338,23 @@ declare module "sap/ui/table/Column" {
2142
2338
  */
2143
2339
  hAlign?:
2144
2340
  | (HorizontalAlign | keyof typeof HorizontalAlign)
2145
- | PropertyBindingInfo;
2341
+ | PropertyBindingInfo
2342
+ | `{${string}}`;
2146
2343
 
2147
2344
  /**
2148
2345
  * Indicates if the column is sorted. This property only controls if a sort indicator is displayed in the
2149
2346
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
2150
2347
  */
2151
- sorted?: boolean | PropertyBindingInfo;
2348
+ sorted?: boolean | PropertyBindingInfo | `{${string}}`;
2152
2349
 
2153
2350
  /**
2154
2351
  * This property indicates the sort direction (Ascending or Descending). The corresponding icon will be
2155
2352
  * rendered if the property `sorted` is `true`
2156
2353
  */
2157
- sortOrder?: (SortOrder | keyof typeof SortOrder) | PropertyBindingInfo;
2354
+ sortOrder?:
2355
+ | (SortOrder | keyof typeof SortOrder)
2356
+ | PropertyBindingInfo
2357
+ | `{${string}}`;
2158
2358
 
2159
2359
  /**
2160
2360
  * Specifies the binding property on which the column will sort. Since the column template may have composite
@@ -2171,7 +2371,7 @@ declare module "sap/ui/table/Column" {
2171
2371
  * the column header - it does not trigger the filter function. The column can be filtered using {@link
2172
2372
  * sap.ui.table.Table#filter}.
2173
2373
  */
2174
- filtered?: boolean | PropertyBindingInfo;
2374
+ filtered?: boolean | PropertyBindingInfo | `{${string}}`;
2175
2375
 
2176
2376
  /**
2177
2377
  * Specifies the binding property on which the column shall be filtered. Since the column template may have
@@ -2226,17 +2426,17 @@ declare module "sap/ui/table/Column" {
2226
2426
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
2227
2427
  * #setFilterType} instead.
2228
2428
  */
2229
- filterType?: any | PropertyBindingInfo;
2429
+ filterType?: any | PropertyBindingInfo | `{${string}}`;
2230
2430
 
2231
2431
  /**
2232
2432
  * Indicates if the column is grouped.
2233
2433
  */
2234
- grouped?: boolean | PropertyBindingInfo;
2434
+ grouped?: boolean | PropertyBindingInfo | `{${string}}`;
2235
2435
 
2236
2436
  /**
2237
2437
  * Invisible controls are not rendered.
2238
2438
  */
2239
- visible?: boolean | PropertyBindingInfo;
2439
+ visible?: boolean | PropertyBindingInfo | `{${string}}`;
2240
2440
 
2241
2441
  /**
2242
2442
  * @SINCE 1.11.1
@@ -2252,14 +2452,14 @@ declare module "sap/ui/table/Column" {
2252
2452
  *
2253
2453
  * Defines if the filter menu entry is displayed
2254
2454
  */
2255
- showFilterMenuEntry?: boolean | PropertyBindingInfo;
2455
+ showFilterMenuEntry?: boolean | PropertyBindingInfo | `{${string}}`;
2256
2456
 
2257
2457
  /**
2258
2458
  * @SINCE 1.13.0
2259
2459
  *
2260
2460
  * Defines if the sort menu entries are displayed
2261
2461
  */
2262
- showSortMenuEntry?: boolean | PropertyBindingInfo;
2462
+ showSortMenuEntry?: boolean | PropertyBindingInfo | `{${string}}`;
2263
2463
 
2264
2464
  /**
2265
2465
  * If this property is set, a span is applied for the header. When moving columns, all columns which are
@@ -2269,7 +2469,7 @@ declare module "sap/ui/table/Column" {
2269
2469
  * Only columns with a span equal to 1 can have a column menu. When setting a column to fixed, all columns
2270
2470
  * which are part of the header with the greatest span will be set to fixed.
2271
2471
  */
2272
- headerSpan?: any | PropertyBindingInfo;
2472
+ headerSpan?: any | PropertyBindingInfo | `{${string}}`;
2273
2473
 
2274
2474
  /**
2275
2475
  * @SINCE 1.21.1
@@ -2280,7 +2480,7 @@ declare module "sap/ui/table/Column" {
2280
2480
  * sap.m.Input, sap.ui.commons.TextView, sap.ui.commons.Label, sap.ui.commons.Link and sap.ui.commons.TextField,
2281
2481
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
2282
2482
  */
2283
- autoResizable?: boolean | PropertyBindingInfo;
2483
+ autoResizable?: boolean | PropertyBindingInfo | `{${string}}`;
2284
2484
 
2285
2485
  /**
2286
2486
  * Label of the column which is displayed in the column header. This aggregation is for the standard behavior,
@@ -2295,7 +2495,7 @@ declare module "sap/ui/table/Column" {
2295
2495
  * Labels of the column which are displayed in the column header. Define a control for each header row in
2296
2496
  * the table. Use this aggregation if you want to use multiple headers per column.
2297
2497
  */
2298
- multiLabels?: Control[] | Control | AggregationBindingInfo;
2498
+ multiLabels?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
2299
2499
 
2300
2500
  /**
2301
2501
  * Template (cell renderer) of this column. A template is decoupled from the column. Each time the template's
@@ -2387,6 +2587,8 @@ declare module "sap/ui/table/ColumnMenu" {
2387
2587
  * information contained in `oClassInfo`.
2388
2588
  *
2389
2589
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.Menu.extend}.
2590
+ *
2591
+ * @returns Created class / constructor function
2390
2592
  */
2391
2593
  static extend<T extends Record<string, unknown>>(
2392
2594
  /**
@@ -2405,6 +2607,8 @@ declare module "sap/ui/table/ColumnMenu" {
2405
2607
  ): Function;
2406
2608
  /**
2407
2609
  * Returns a metadata object for class sap.ui.table.ColumnMenu.
2610
+ *
2611
+ * @returns Metadata object describing this class
2408
2612
  */
2409
2613
  static getMetadata(): ElementMetadata;
2410
2614
  }
@@ -2458,6 +2662,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2458
2662
  * enriches it with the information contained in `oClassInfo`.
2459
2663
  *
2460
2664
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.plugins.SelectionPlugin.extend}.
2665
+ *
2666
+ * @returns Created class / constructor function
2461
2667
  */
2462
2668
  static extend<T extends Record<string, unknown>>(
2463
2669
  /**
@@ -2476,6 +2682,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2476
2682
  ): Function;
2477
2683
  /**
2478
2684
  * Returns a metadata object for class sap.ui.table.plugins.MultiSelectionPlugin.
2685
+ *
2686
+ * @returns Metadata object describing this class
2479
2687
  */
2480
2688
  static getMetadata(): ElementMetadata;
2481
2689
  /**
@@ -2484,6 +2692,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2484
2692
  *
2485
2693
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
2486
2694
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
2695
+ *
2696
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2487
2697
  */
2488
2698
  addSelectionInterval(
2489
2699
  /**
@@ -2508,6 +2718,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2508
2718
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
2509
2719
  *
2510
2720
  * This event is fired when the selection is changed.
2721
+ *
2722
+ * @returns Reference to `this` in order to allow method chaining
2511
2723
  */
2512
2724
  attachSelectionChange(
2513
2725
  /**
@@ -2533,6 +2745,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2533
2745
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
2534
2746
  *
2535
2747
  * This event is fired when the selection is changed.
2748
+ *
2749
+ * @returns Reference to `this` in order to allow method chaining
2536
2750
  */
2537
2751
  attachSelectionChange(
2538
2752
  /**
@@ -2560,6 +2774,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2560
2774
  * this `sap.ui.table.plugins.MultiSelectionPlugin`.
2561
2775
  *
2562
2776
  * The passed function and listener object must match the ones used for event registration.
2777
+ *
2778
+ * @returns Reference to `this` in order to allow method chaining
2563
2779
  */
2564
2780
  detachSelectionChange(
2565
2781
  /**
@@ -2573,6 +2789,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2573
2789
  ): this;
2574
2790
  /**
2575
2791
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
2792
+ *
2793
+ * @returns Reference to `this` in order to allow method chaining
2576
2794
  */
2577
2795
  fireSelectionChange(
2578
2796
  /**
@@ -2601,6 +2819,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2601
2819
  * Enables notifications that are displayed once a selection has been limited.
2602
2820
  *
2603
2821
  * Default value is `false`.
2822
+ *
2823
+ * @returns Value of property `enableNotification`
2604
2824
  */
2605
2825
  getEnableNotification(): boolean;
2606
2826
  /**
@@ -2617,10 +2837,14 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2617
2837
  * control.
2618
2838
  *
2619
2839
  * Default value is `200`.
2840
+ *
2841
+ * @returns Value of property `limit`
2620
2842
  */
2621
2843
  getLimit(): int;
2622
2844
  /**
2623
2845
  * Zero-based indices of selected indices, wrapped in an array. An empty array means nothing has been selected.
2846
+ *
2847
+ * @returns An array containing all selected indices
2624
2848
  */
2625
2849
  getSelectedIndices(): int[];
2626
2850
  /**
@@ -2631,6 +2855,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2631
2855
  * removed.
2632
2856
  *
2633
2857
  * Default value is `MultiToggle`.
2858
+ *
2859
+ * @returns Value of property `selectionMode`
2634
2860
  */
2635
2861
  getSelectionMode(): SelectionMode | keyof typeof SelectionMode;
2636
2862
  /**
@@ -2639,10 +2865,14 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2639
2865
  * Show header selector
2640
2866
  *
2641
2867
  * Default value is `true`.
2868
+ *
2869
+ * @returns Value of property `showHeaderSelector`
2642
2870
  */
2643
2871
  getShowHeaderSelector(): boolean;
2644
2872
  /**
2645
2873
  * Returns the information whether the given index is selected.
2874
+ *
2875
+ * @returns `true` if the index is selected
2646
2876
  */
2647
2877
  isIndexSelected(
2648
2878
  /**
@@ -2672,6 +2902,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2672
2902
  /**
2673
2903
  * Requests the binding contexts and adds all indices to the selection if the limit is disabled or the binding
2674
2904
  * length is smaller then the limit.
2905
+ *
2906
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2675
2907
  */
2676
2908
  selectAll(
2677
2909
  /**
@@ -2690,6 +2922,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2690
2922
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2691
2923
  *
2692
2924
  * Default value is `false`.
2925
+ *
2926
+ * @returns Reference to `this` in order to allow method chaining
2693
2927
  */
2694
2928
  setEnableNotification(
2695
2929
  /**
@@ -2713,6 +2947,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2713
2947
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2714
2948
  *
2715
2949
  * Default value is `200`.
2950
+ *
2951
+ * @returns Reference to `this` in order to allow method chaining
2716
2952
  */
2717
2953
  setLimit(
2718
2954
  /**
@@ -2722,6 +2958,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2722
2958
  ): this;
2723
2959
  /**
2724
2960
  * Requests the context and sets the selected index to `iIndex`.
2961
+ *
2962
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2725
2963
  */
2726
2964
  setSelectedIndex(
2727
2965
  /**
@@ -2740,6 +2978,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2740
2978
  *
2741
2979
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
2742
2980
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
2981
+ *
2982
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
2743
2983
  */
2744
2984
  setSelectionInterval(
2745
2985
  /**
@@ -2766,6 +3006,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2766
3006
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2767
3007
  *
2768
3008
  * Default value is `MultiToggle`.
3009
+ *
3010
+ * @returns Reference to `this` in order to allow method chaining
2769
3011
  */
2770
3012
  setSelectionMode(
2771
3013
  /**
@@ -2781,6 +3023,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2781
3023
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2782
3024
  *
2783
3025
  * Default value is `true`.
3026
+ *
3027
+ * @returns Reference to `this` in order to allow method chaining
2784
3028
  */
2785
3029
  setShowHeaderSelector(
2786
3030
  /**
@@ -2803,19 +3047,19 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2803
3047
  * the value of the {@link sap.ui.table.Table#getThreshold threshold} property of the related `sap.ui.table.Table`
2804
3048
  * control.
2805
3049
  */
2806
- limit?: int | PropertyBindingInfo;
3050
+ limit?: int | PropertyBindingInfo | `{${string}}`;
2807
3051
 
2808
3052
  /**
2809
3053
  * @SINCE 1.71
2810
3054
  *
2811
3055
  * Enables notifications that are displayed once a selection has been limited.
2812
3056
  */
2813
- enableNotification?: boolean | PropertyBindingInfo;
3057
+ enableNotification?: boolean | PropertyBindingInfo | `{${string}}`;
2814
3058
 
2815
3059
  /**
2816
3060
  * Show header selector
2817
3061
  */
2818
- showHeaderSelector?: boolean | PropertyBindingInfo;
3062
+ showHeaderSelector?: boolean | PropertyBindingInfo | `{${string}}`;
2819
3063
 
2820
3064
  /**
2821
3065
  * Selection mode of the plugin. This property controls whether single or multiple rows can be selected.
@@ -2824,7 +3068,8 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
2824
3068
  */
2825
3069
  selectionMode?:
2826
3070
  | (SelectionMode | keyof typeof SelectionMode)
2827
- | PropertyBindingInfo;
3071
+ | PropertyBindingInfo
3072
+ | `{${string}}`;
2828
3073
 
2829
3074
  /**
2830
3075
  * This event is fired when the selection is changed.
@@ -2864,6 +3109,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2864
3109
  * it with the information contained in `oClassInfo`.
2865
3110
  *
2866
3111
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3112
+ *
3113
+ * @returns Created class / constructor function
2867
3114
  */
2868
3115
  static extend<T extends Record<string, unknown>>(
2869
3116
  /**
@@ -2882,6 +3129,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2882
3129
  ): Function;
2883
3130
  /**
2884
3131
  * Returns a metadata object for class sap.ui.table.plugins.SelectionPlugin.
3132
+ *
3133
+ * @returns Metadata object describing this class
2885
3134
  */
2886
3135
  static getMetadata(): ElementMetadata;
2887
3136
  /**
@@ -2892,6 +3141,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2892
3141
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
2893
3142
  *
2894
3143
  * This event is fired when the selection is changed.
3144
+ *
3145
+ * @returns Reference to `this` in order to allow method chaining
2895
3146
  */
2896
3147
  attachSelectionChange(
2897
3148
  /**
@@ -2917,6 +3168,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2917
3168
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
2918
3169
  *
2919
3170
  * This event is fired when the selection is changed.
3171
+ *
3172
+ * @returns Reference to `this` in order to allow method chaining
2920
3173
  */
2921
3174
  attachSelectionChange(
2922
3175
  /**
@@ -2934,6 +3187,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2934
3187
  * this `sap.ui.table.plugins.SelectionPlugin`.
2935
3188
  *
2936
3189
  * The passed function and listener object must match the ones used for event registration.
3190
+ *
3191
+ * @returns Reference to `this` in order to allow method chaining
2937
3192
  */
2938
3193
  detachSelectionChange(
2939
3194
  /**
@@ -2947,6 +3202,8 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
2947
3202
  ): this;
2948
3203
  /**
2949
3204
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
3205
+ *
3206
+ * @returns Reference to `this` in order to allow method chaining
2950
3207
  */
2951
3208
  fireSelectionChange(
2952
3209
  /**
@@ -2971,8 +3228,6 @@ declare module "sap/ui/table/Row" {
2971
3228
 
2972
3229
  import ElementMetadata from "sap/ui/core/ElementMetadata";
2973
3230
 
2974
- import RowAction from "sap/ui/table/RowAction";
2975
-
2976
3231
  import { AggregationBindingInfo } from "sap/ui/base/ManagedObject";
2977
3232
 
2978
3233
  /**
@@ -3015,6 +3270,8 @@ declare module "sap/ui/table/Row" {
3015
3270
  * contained in `oClassInfo`.
3016
3271
  *
3017
3272
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3273
+ *
3274
+ * @returns Created class / constructor function
3018
3275
  */
3019
3276
  static extend<T extends Record<string, unknown>>(
3020
3277
  /**
@@ -3033,10 +3290,14 @@ declare module "sap/ui/table/Row" {
3033
3290
  ): Function;
3034
3291
  /**
3035
3292
  * Returns a metadata object for class sap.ui.table.Row.
3293
+ *
3294
+ * @returns Metadata object describing this class
3036
3295
  */
3037
3296
  static getMetadata(): ElementMetadata;
3038
3297
  /**
3039
3298
  * Adds some cell to the aggregation {@link #getCells cells}.
3299
+ *
3300
+ * @returns Reference to `this` in order to allow method chaining
3040
3301
  */
3041
3302
  addCell(
3042
3303
  /**
@@ -3046,6 +3307,8 @@ declare module "sap/ui/table/Row" {
3046
3307
  ): this;
3047
3308
  /**
3048
3309
  * Destroys all the cells in the aggregation {@link #getCells cells}.
3310
+ *
3311
+ * @returns Reference to `this` in order to allow method chaining
3049
3312
  */
3050
3313
  destroyCells(): this;
3051
3314
  /**
@@ -3059,18 +3322,15 @@ declare module "sap/ui/table/Row" {
3059
3322
  /**
3060
3323
  * Returns the index of the row in the table or -1 if not added to a table. This function considers the
3061
3324
  * scroll position of the table and also takes fixed rows and fixed bottom rows into account.
3062
- */
3063
- getIndex(): int;
3064
- /**
3065
- * Returns the related `RowAction` of the row.
3066
3325
  *
3067
- * This function must only be used for application testing purposes. The `RowAction` is generated based
3068
- * on a template. Manipulations of the object or its items are not supported.
3326
+ * @returns index of the row (considers scroll position and fixed rows)
3069
3327
  */
3070
- getRowAction(): RowAction;
3328
+ getIndex(): int;
3071
3329
  /**
3072
3330
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCells cells}. and returns
3073
3331
  * its index if found or -1 otherwise.
3332
+ *
3333
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3074
3334
  */
3075
3335
  indexOfCell(
3076
3336
  /**
@@ -3080,6 +3340,8 @@ declare module "sap/ui/table/Row" {
3080
3340
  ): int;
3081
3341
  /**
3082
3342
  * Inserts a cell into the aggregation {@link #getCells cells}.
3343
+ *
3344
+ * @returns Reference to `this` in order to allow method chaining
3083
3345
  */
3084
3346
  insertCell(
3085
3347
  /**
@@ -3097,10 +3359,14 @@ declare module "sap/ui/table/Row" {
3097
3359
  * Removes all the controls from the aggregation {@link #getCells cells}.
3098
3360
  *
3099
3361
  * Additionally, it unregisters them from the hosting UIArea.
3362
+ *
3363
+ * @returns An array of the removed elements (might be empty)
3100
3364
  */
3101
3365
  removeAllCells(): Control[];
3102
3366
  /**
3103
3367
  * Removes a cell from the aggregation {@link #getCells cells}.
3368
+ *
3369
+ * @returns The removed cell or `null`
3104
3370
  */
3105
3371
  removeCell(
3106
3372
  /**
@@ -3116,7 +3382,7 @@ declare module "sap/ui/table/Row" {
3116
3382
  * the cells. This aggregation is managed by the table and must not be manipulated. Only read access is
3117
3383
  * allowed.
3118
3384
  */
3119
- cells?: Control[] | Control | AggregationBindingInfo;
3385
+ cells?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
3120
3386
  }
3121
3387
  }
3122
3388
 
@@ -3176,6 +3442,8 @@ declare module "sap/ui/table/RowAction" {
3176
3442
  * information contained in `oClassInfo`.
3177
3443
  *
3178
3444
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3445
+ *
3446
+ * @returns Created class / constructor function
3179
3447
  */
3180
3448
  static extend<T extends Record<string, unknown>>(
3181
3449
  /**
@@ -3194,10 +3462,14 @@ declare module "sap/ui/table/RowAction" {
3194
3462
  ): Function;
3195
3463
  /**
3196
3464
  * Returns a metadata object for class sap.ui.table.RowAction.
3465
+ *
3466
+ * @returns Metadata object describing this class
3197
3467
  */
3198
3468
  static getMetadata(): ElementMetadata;
3199
3469
  /**
3200
3470
  * Adds some item to the aggregation {@link #getItems items}.
3471
+ *
3472
+ * @returns Reference to `this` in order to allow method chaining
3201
3473
  */
3202
3474
  addItem(
3203
3475
  /**
@@ -3207,6 +3479,8 @@ declare module "sap/ui/table/RowAction" {
3207
3479
  ): this;
3208
3480
  /**
3209
3481
  * Destroys all the items in the aggregation {@link #getItems items}.
3482
+ *
3483
+ * @returns Reference to `this` in order to allow method chaining
3210
3484
  */
3211
3485
  destroyItems(): this;
3212
3486
  /**
@@ -3221,11 +3495,15 @@ declare module "sap/ui/table/RowAction" {
3221
3495
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
3222
3496
  *
3223
3497
  * Default value is `true`.
3498
+ *
3499
+ * @returns Value of property `visible`
3224
3500
  */
3225
3501
  getVisible(): boolean;
3226
3502
  /**
3227
3503
  * Checks for the provided `sap.ui.table.RowActionItem` in the aggregation {@link #getItems items}. and
3228
3504
  * returns its index if found or -1 otherwise.
3505
+ *
3506
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3229
3507
  */
3230
3508
  indexOfItem(
3231
3509
  /**
@@ -3235,6 +3513,8 @@ declare module "sap/ui/table/RowAction" {
3235
3513
  ): int;
3236
3514
  /**
3237
3515
  * Inserts a item into the aggregation {@link #getItems items}.
3516
+ *
3517
+ * @returns Reference to `this` in order to allow method chaining
3238
3518
  */
3239
3519
  insertItem(
3240
3520
  /**
@@ -3252,10 +3532,14 @@ declare module "sap/ui/table/RowAction" {
3252
3532
  * Removes all the controls from the aggregation {@link #getItems items}.
3253
3533
  *
3254
3534
  * Additionally, it unregisters them from the hosting UIArea.
3535
+ *
3536
+ * @returns An array of the removed elements (might be empty)
3255
3537
  */
3256
3538
  removeAllItems(): RowActionItem[];
3257
3539
  /**
3258
3540
  * Removes a item from the aggregation {@link #getItems items}.
3541
+ *
3542
+ * @returns The removed item or `null`
3259
3543
  */
3260
3544
  removeItem(
3261
3545
  /**
@@ -3271,6 +3555,8 @@ declare module "sap/ui/table/RowAction" {
3271
3555
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3272
3556
  *
3273
3557
  * Default value is `true`.
3558
+ *
3559
+ * @returns Reference to `this` in order to allow method chaining
3274
3560
  */
3275
3561
  setVisible(
3276
3562
  /**
@@ -3284,12 +3570,16 @@ declare module "sap/ui/table/RowAction" {
3284
3570
  /**
3285
3571
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
3286
3572
  */
3287
- visible?: boolean | PropertyBindingInfo;
3573
+ visible?: boolean | PropertyBindingInfo | `{${string}}`;
3288
3574
 
3289
3575
  /**
3290
3576
  * The action items which should be displayed.
3291
3577
  */
3292
- items?: RowActionItem[] | RowActionItem | AggregationBindingInfo;
3578
+ items?:
3579
+ | RowActionItem[]
3580
+ | RowActionItem
3581
+ | AggregationBindingInfo
3582
+ | `{${string}}`;
3293
3583
  }
3294
3584
  }
3295
3585
 
@@ -3349,6 +3639,8 @@ declare module "sap/ui/table/RowActionItem" {
3349
3639
  * the information contained in `oClassInfo`.
3350
3640
  *
3351
3641
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3642
+ *
3643
+ * @returns Created class / constructor function
3352
3644
  */
3353
3645
  static extend<T extends Record<string, unknown>>(
3354
3646
  /**
@@ -3367,6 +3659,8 @@ declare module "sap/ui/table/RowActionItem" {
3367
3659
  ): Function;
3368
3660
  /**
3369
3661
  * Returns a metadata object for class sap.ui.table.RowActionItem.
3662
+ *
3663
+ * @returns Metadata object describing this class
3370
3664
  */
3371
3665
  static getMetadata(): ElementMetadata;
3372
3666
  /**
@@ -3376,6 +3670,8 @@ declare module "sap/ui/table/RowActionItem" {
3376
3670
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3377
3671
  *
3378
3672
  * The `press` is fired when the user triggers the corresponding action.
3673
+ *
3674
+ * @returns Reference to `this` in order to allow method chaining
3379
3675
  */
3380
3676
  attachPress(
3381
3677
  /**
@@ -3399,6 +3695,8 @@ declare module "sap/ui/table/RowActionItem" {
3399
3695
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3400
3696
  *
3401
3697
  * The `press` is fired when the user triggers the corresponding action.
3698
+ *
3699
+ * @returns Reference to `this` in order to allow method chaining
3402
3700
  */
3403
3701
  attachPress(
3404
3702
  /**
@@ -3414,6 +3712,8 @@ declare module "sap/ui/table/RowActionItem" {
3414
3712
  * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.ui.table.RowActionItem`.
3415
3713
  *
3416
3714
  * The passed function and listener object must match the ones used for event registration.
3715
+ *
3716
+ * @returns Reference to `this` in order to allow method chaining
3417
3717
  */
3418
3718
  detachPress(
3419
3719
  /**
@@ -3427,6 +3727,8 @@ declare module "sap/ui/table/RowActionItem" {
3427
3727
  ): this;
3428
3728
  /**
3429
3729
  * Fires event {@link #event:press press} to attached listeners.
3730
+ *
3731
+ * @returns Reference to `this` in order to allow method chaining
3430
3732
  */
3431
3733
  firePress(
3432
3734
  /**
@@ -3438,6 +3740,8 @@ declare module "sap/ui/table/RowActionItem" {
3438
3740
  * Gets current value of property {@link #getIcon icon}.
3439
3741
  *
3440
3742
  * The icon of the item.
3743
+ *
3744
+ * @returns Value of property `icon`
3441
3745
  */
3442
3746
  getIcon(): URI;
3443
3747
  /**
@@ -3446,6 +3750,8 @@ declare module "sap/ui/table/RowActionItem" {
3446
3750
  * The text of the item. It is used as tooltip and for accessibility purposes.
3447
3751
  *
3448
3752
  * Default value is `empty string`.
3753
+ *
3754
+ * @returns Value of property `text`
3449
3755
  */
3450
3756
  getText(): string;
3451
3757
  /**
@@ -3455,6 +3761,8 @@ declare module "sap/ui/table/RowActionItem" {
3455
3761
  * an icon or text is set explicitly this setting is used.
3456
3762
  *
3457
3763
  * Default value is `Custom`.
3764
+ *
3765
+ * @returns Value of property `type`
3458
3766
  */
3459
3767
  getType(): RowActionType | keyof typeof RowActionType;
3460
3768
  /**
@@ -3463,6 +3771,8 @@ declare module "sap/ui/table/RowActionItem" {
3463
3771
  * Whether the item should be visible on the screen.
3464
3772
  *
3465
3773
  * Default value is `true`.
3774
+ *
3775
+ * @returns Value of property `visible`
3466
3776
  */
3467
3777
  getVisible(): boolean;
3468
3778
  /**
@@ -3471,6 +3781,8 @@ declare module "sap/ui/table/RowActionItem" {
3471
3781
  * The icon of the item.
3472
3782
  *
3473
3783
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3784
+ *
3785
+ * @returns Reference to `this` in order to allow method chaining
3474
3786
  */
3475
3787
  setIcon(
3476
3788
  /**
@@ -3486,6 +3798,8 @@ declare module "sap/ui/table/RowActionItem" {
3486
3798
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3487
3799
  *
3488
3800
  * Default value is `empty string`.
3801
+ *
3802
+ * @returns Reference to `this` in order to allow method chaining
3489
3803
  */
3490
3804
  setText(
3491
3805
  /**
@@ -3502,6 +3816,8 @@ declare module "sap/ui/table/RowActionItem" {
3502
3816
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3503
3817
  *
3504
3818
  * Default value is `Custom`.
3819
+ *
3820
+ * @returns Reference to `this` in order to allow method chaining
3505
3821
  */
3506
3822
  setType(
3507
3823
  /**
@@ -3517,6 +3833,8 @@ declare module "sap/ui/table/RowActionItem" {
3517
3833
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3518
3834
  *
3519
3835
  * Default value is `true`.
3836
+ *
3837
+ * @returns Reference to `this` in order to allow method chaining
3520
3838
  */
3521
3839
  setVisible(
3522
3840
  /**
@@ -3530,12 +3848,12 @@ declare module "sap/ui/table/RowActionItem" {
3530
3848
  /**
3531
3849
  * The icon of the item.
3532
3850
  */
3533
- icon?: URI | PropertyBindingInfo;
3851
+ icon?: URI | PropertyBindingInfo | `{${string}}`;
3534
3852
 
3535
3853
  /**
3536
3854
  * Whether the item should be visible on the screen.
3537
3855
  */
3538
- visible?: boolean | PropertyBindingInfo;
3856
+ visible?: boolean | PropertyBindingInfo | `{${string}}`;
3539
3857
 
3540
3858
  /**
3541
3859
  * The text of the item. It is used as tooltip and for accessibility purposes.
@@ -3546,7 +3864,10 @@ declare module "sap/ui/table/RowActionItem" {
3546
3864
  * The type of the item. Setting the type ensures default values for the properties `icon` and `text`. If
3547
3865
  * an icon or text is set explicitly this setting is used.
3548
3866
  */
3549
- type?: (RowActionType | keyof typeof RowActionType) | PropertyBindingInfo;
3867
+ type?:
3868
+ | (RowActionType | keyof typeof RowActionType)
3869
+ | PropertyBindingInfo
3870
+ | `{${string}}`;
3550
3871
 
3551
3872
  /**
3552
3873
  * The `press` is fired when the user triggers the corresponding action.
@@ -3605,6 +3926,8 @@ declare module "sap/ui/table/RowSettings" {
3605
3926
  * the information contained in `oClassInfo`.
3606
3927
  *
3607
3928
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3929
+ *
3930
+ * @returns Created class / constructor function
3608
3931
  */
3609
3932
  static extend<T extends Record<string, unknown>>(
3610
3933
  /**
@@ -3623,6 +3946,8 @@ declare module "sap/ui/table/RowSettings" {
3623
3946
  ): Function;
3624
3947
  /**
3625
3948
  * Returns a metadata object for class sap.ui.table.RowSettings.
3949
+ *
3950
+ * @returns Metadata object describing this class
3626
3951
  */
3627
3952
  static getMetadata(): ElementMetadata;
3628
3953
  /**
@@ -3643,6 +3968,8 @@ declare module "sap/ui/table/RowSettings" {
3643
3968
  * property must be set.
3644
3969
  *
3645
3970
  * Default value is `"None"`.
3971
+ *
3972
+ * @returns Value of property `highlight`
3646
3973
  */
3647
3974
  getHighlight(): string;
3648
3975
  /**
@@ -3655,6 +3982,8 @@ declare module "sap/ui/table/RowSettings" {
3655
3982
  * the highlight.
3656
3983
  *
3657
3984
  * Default value is `empty string`.
3985
+ *
3986
+ * @returns Value of property `highlightText`
3658
3987
  */
3659
3988
  getHighlightText(): string;
3660
3989
  /**
@@ -3668,6 +3997,8 @@ declare module "sap/ui/table/RowSettings" {
3668
3997
  * must be set for **one** row only.
3669
3998
  *
3670
3999
  * Default value is `false`.
4000
+ *
4001
+ * @returns Value of property `navigated`
3671
4002
  */
3672
4003
  getNavigated(): boolean;
3673
4004
  /**
@@ -3690,6 +4021,8 @@ declare module "sap/ui/table/RowSettings" {
3690
4021
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3691
4022
  *
3692
4023
  * Default value is `"None"`.
4024
+ *
4025
+ * @returns Reference to `this` in order to allow method chaining
3693
4026
  */
3694
4027
  setHighlight(
3695
4028
  /**
@@ -3709,6 +4042,8 @@ declare module "sap/ui/table/RowSettings" {
3709
4042
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3710
4043
  *
3711
4044
  * Default value is `empty string`.
4045
+ *
4046
+ * @returns Reference to `this` in order to allow method chaining
3712
4047
  */
3713
4048
  setHighlightText(
3714
4049
  /**
@@ -3729,6 +4064,8 @@ declare module "sap/ui/table/RowSettings" {
3729
4064
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3730
4065
  *
3731
4066
  * Default value is `false`.
4067
+ *
4068
+ * @returns Reference to `this` in order to allow method chaining
3732
4069
  */
3733
4070
  setNavigated(
3734
4071
  /**
@@ -3773,7 +4110,7 @@ declare module "sap/ui/table/RowSettings" {
3773
4110
  * If set to `true`, a navigation indicator is displayed at the end of the row. **Note:** This property
3774
4111
  * must be set for **one** row only.
3775
4112
  */
3776
- navigated?: boolean | PropertyBindingInfo;
4113
+ navigated?: boolean | PropertyBindingInfo | `{${string}}`;
3777
4114
  }
3778
4115
  }
3779
4116
 
@@ -3876,6 +4213,8 @@ declare module "sap/ui/table/Table" {
3876
4213
  * contained in `oClassInfo`.
3877
4214
  *
3878
4215
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4216
+ *
4217
+ * @returns Created class / constructor function
3879
4218
  */
3880
4219
  static extend<T extends Record<string, unknown>>(
3881
4220
  /**
@@ -3894,10 +4233,14 @@ declare module "sap/ui/table/Table" {
3894
4233
  ): Function;
3895
4234
  /**
3896
4235
  * Returns a metadata object for class sap.ui.table.Table.
4236
+ *
4237
+ * @returns Metadata object describing this class
3897
4238
  */
3898
4239
  static getMetadata(): ElementMetadata;
3899
4240
  /**
3900
4241
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4242
+ *
4243
+ * @returns Reference to `this` in order to allow method chaining
3901
4244
  */
3902
4245
  addAriaLabelledBy(
3903
4246
  /**
@@ -3907,6 +4250,8 @@ declare module "sap/ui/table/Table" {
3907
4250
  ): this;
3908
4251
  /**
3909
4252
  * Adds some column to the aggregation {@link #getColumns columns}.
4253
+ *
4254
+ * @returns Reference to `this` in order to allow method chaining
3910
4255
  */
3911
4256
  addColumn(
3912
4257
  /**
@@ -3916,6 +4261,8 @@ declare module "sap/ui/table/Table" {
3916
4261
  ): this;
3917
4262
  /**
3918
4263
  * Adds some extension to the aggregation {@link #getExtension extension}.
4264
+ *
4265
+ * @returns Reference to `this` in order to allow method chaining
3919
4266
  */
3920
4267
  addExtension(
3921
4268
  /**
@@ -3927,6 +4274,8 @@ declare module "sap/ui/table/Table" {
3927
4274
  * @SINCE 1.64
3928
4275
  *
3929
4276
  * Adds some plugin to the aggregation {@link #getPlugins plugins}.
4277
+ *
4278
+ * @returns Reference to `this` in order to allow method chaining
3930
4279
  */
3931
4280
  addPlugin(
3932
4281
  /**
@@ -3936,6 +4285,8 @@ declare module "sap/ui/table/Table" {
3936
4285
  ): this;
3937
4286
  /**
3938
4287
  * Adds some row to the aggregation {@link #getRows rows}.
4288
+ *
4289
+ * @returns Reference to `this` in order to allow method chaining
3939
4290
  */
3940
4291
  addRow(
3941
4292
  /**
@@ -3946,6 +4297,8 @@ declare module "sap/ui/table/Table" {
3946
4297
  /**
3947
4298
  * Adds the given selection interval to the selection. In case of a single selection, only `iIndexTo` is
3948
4299
  * added to the selection.
4300
+ *
4301
+ * @returns Reference to `this` in order to allow method chaining
3949
4302
  */
3950
4303
  addSelectionInterval(
3951
4304
  /**
@@ -3967,6 +4320,8 @@ declare module "sap/ui/table/Table" {
3967
4320
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
3968
4321
  *
3969
4322
  * Fired when the user requests the context menu for a table cell.
4323
+ *
4324
+ * @returns Reference to `this` in order to allow method chaining
3970
4325
  */
3971
4326
  attachBeforeOpenContextMenu(
3972
4327
  /**
@@ -3993,6 +4348,8 @@ declare module "sap/ui/table/Table" {
3993
4348
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
3994
4349
  *
3995
4350
  * Fired when the user requests the context menu for a table cell.
4351
+ *
4352
+ * @returns Reference to `this` in order to allow method chaining
3996
4353
  */
3997
4354
  attachBeforeOpenContextMenu(
3998
4355
  /**
@@ -4014,6 +4371,8 @@ declare module "sap/ui/table/Table" {
4014
4371
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4015
4372
  *
4016
4373
  * This event gets fired when the busy state of the table changes. It should only be used by composite controls.
4374
+ *
4375
+ * @returns Reference to `this` in order to allow method chaining
4017
4376
  */
4018
4377
  attachBusyStateChanged(
4019
4378
  /**
@@ -4040,6 +4399,8 @@ declare module "sap/ui/table/Table" {
4040
4399
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4041
4400
  *
4042
4401
  * This event gets fired when the busy state of the table changes. It should only be used by composite controls.
4402
+ *
4403
+ * @returns Reference to `this` in order to allow method chaining
4043
4404
  */
4044
4405
  attachBusyStateChanged(
4045
4406
  /**
@@ -4060,6 +4421,8 @@ declare module "sap/ui/table/Table" {
4060
4421
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4061
4422
  *
4062
4423
  * fired when the user clicks a cell of the table (experimental!).
4424
+ *
4425
+ * @returns Reference to `this` in order to allow method chaining
4063
4426
  */
4064
4427
  attachCellClick(
4065
4428
  /**
@@ -4085,6 +4448,8 @@ declare module "sap/ui/table/Table" {
4085
4448
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4086
4449
  *
4087
4450
  * fired when the user clicks a cell of the table (experimental!).
4451
+ *
4452
+ * @returns Reference to `this` in order to allow method chaining
4088
4453
  */
4089
4454
  attachCellClick(
4090
4455
  /**
@@ -4107,6 +4472,8 @@ declare module "sap/ui/table/Table" {
4107
4472
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4108
4473
  *
4109
4474
  * fired when the user clicks a cell of the table.
4475
+ *
4476
+ * @returns Reference to `this` in order to allow method chaining
4110
4477
  */
4111
4478
  attachCellContextmenu(
4112
4479
  /**
@@ -4134,6 +4501,8 @@ declare module "sap/ui/table/Table" {
4134
4501
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4135
4502
  *
4136
4503
  * fired when the user clicks a cell of the table.
4504
+ *
4505
+ * @returns Reference to `this` in order to allow method chaining
4137
4506
  */
4138
4507
  attachCellContextmenu(
4139
4508
  /**
@@ -4154,6 +4523,8 @@ declare module "sap/ui/table/Table" {
4154
4523
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4155
4524
  *
4156
4525
  * fired when a column of the table should be freezed
4526
+ *
4527
+ * @returns Reference to `this` in order to allow method chaining
4157
4528
  */
4158
4529
  attachColumnFreeze(
4159
4530
  /**
@@ -4179,6 +4550,8 @@ declare module "sap/ui/table/Table" {
4179
4550
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4180
4551
  *
4181
4552
  * fired when a column of the table should be freezed
4553
+ *
4554
+ * @returns Reference to `this` in order to allow method chaining
4182
4555
  */
4183
4556
  attachColumnFreeze(
4184
4557
  /**
@@ -4197,6 +4570,8 @@ declare module "sap/ui/table/Table" {
4197
4570
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4198
4571
  *
4199
4572
  * fired when a table column is moved.
4573
+ *
4574
+ * @returns Reference to `this` in order to allow method chaining
4200
4575
  */
4201
4576
  attachColumnMove(
4202
4577
  /**
@@ -4220,6 +4595,8 @@ declare module "sap/ui/table/Table" {
4220
4595
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4221
4596
  *
4222
4597
  * fired when a table column is moved.
4598
+ *
4599
+ * @returns Reference to `this` in order to allow method chaining
4223
4600
  */
4224
4601
  attachColumnMove(
4225
4602
  /**
@@ -4238,6 +4615,8 @@ declare module "sap/ui/table/Table" {
4238
4615
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4239
4616
  *
4240
4617
  * fired when a table column is resized.
4618
+ *
4619
+ * @returns Reference to `this` in order to allow method chaining
4241
4620
  */
4242
4621
  attachColumnResize(
4243
4622
  /**
@@ -4261,6 +4640,8 @@ declare module "sap/ui/table/Table" {
4261
4640
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4262
4641
  *
4263
4642
  * fired when a table column is resized.
4643
+ *
4644
+ * @returns Reference to `this` in order to allow method chaining
4264
4645
  */
4265
4646
  attachColumnResize(
4266
4647
  /**
@@ -4279,6 +4660,8 @@ declare module "sap/ui/table/Table" {
4279
4660
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4280
4661
  *
4281
4662
  * fired when a column of the table has been selected
4663
+ *
4664
+ * @returns Reference to `this` in order to allow method chaining
4282
4665
  */
4283
4666
  attachColumnSelect(
4284
4667
  /**
@@ -4302,6 +4685,8 @@ declare module "sap/ui/table/Table" {
4302
4685
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4303
4686
  *
4304
4687
  * fired when a column of the table has been selected
4688
+ *
4689
+ * @returns Reference to `this` in order to allow method chaining
4305
4690
  */
4306
4691
  attachColumnSelect(
4307
4692
  /**
@@ -4321,6 +4706,8 @@ declare module "sap/ui/table/Table" {
4321
4706
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4322
4707
  *
4323
4708
  * fired when the visibility of a table column is changed.
4709
+ *
4710
+ * @returns Reference to `this` in order to allow method chaining
4324
4711
  */
4325
4712
  attachColumnVisibility(
4326
4713
  /**
@@ -4345,6 +4732,8 @@ declare module "sap/ui/table/Table" {
4345
4732
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4346
4733
  *
4347
4734
  * fired when the visibility of a table column is changed.
4735
+ *
4736
+ * @returns Reference to `this` in order to allow method chaining
4348
4737
  */
4349
4738
  attachColumnVisibility(
4350
4739
  /**
@@ -4366,6 +4755,8 @@ declare module "sap/ui/table/Table" {
4366
4755
  *
4367
4756
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4368
4757
  * the event was triggered is passed as parameter.
4758
+ *
4759
+ * @returns Reference to `this` in order to allow method chaining
4369
4760
  */
4370
4761
  attachCustomFilter(
4371
4762
  /**
@@ -4392,6 +4783,8 @@ declare module "sap/ui/table/Table" {
4392
4783
  *
4393
4784
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4394
4785
  * the event was triggered is passed as parameter.
4786
+ *
4787
+ * @returns Reference to `this` in order to allow method chaining
4395
4788
  */
4396
4789
  attachCustomFilter(
4397
4790
  /**
@@ -4410,6 +4803,8 @@ declare module "sap/ui/table/Table" {
4410
4803
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4411
4804
  *
4412
4805
  * fired when the table is filtered.
4806
+ *
4807
+ * @returns Reference to `this` in order to allow method chaining
4413
4808
  */
4414
4809
  attachFilter(
4415
4810
  /**
@@ -4433,6 +4828,8 @@ declare module "sap/ui/table/Table" {
4433
4828
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4434
4829
  *
4435
4830
  * fired when the table is filtered.
4831
+ *
4832
+ * @returns Reference to `this` in order to allow method chaining
4436
4833
  */
4437
4834
  attachFilter(
4438
4835
  /**
@@ -4455,6 +4852,8 @@ declare module "sap/ui/table/Table" {
4455
4852
  *
4456
4853
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4457
4854
  * The event even is fired when setFirstVisibleRow is called programmatically.
4855
+ *
4856
+ * @returns Reference to `this` in order to allow method chaining
4458
4857
  */
4459
4858
  attachFirstVisibleRowChanged(
4460
4859
  /**
@@ -4482,6 +4881,8 @@ declare module "sap/ui/table/Table" {
4482
4881
  *
4483
4882
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4484
4883
  * The event even is fired when setFirstVisibleRow is called programmatically.
4884
+ *
4885
+ * @returns Reference to `this` in order to allow method chaining
4485
4886
  */
4486
4887
  attachFirstVisibleRowChanged(
4487
4888
  /**
@@ -4500,6 +4901,8 @@ declare module "sap/ui/table/Table" {
4500
4901
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4501
4902
  *
4502
4903
  * fired when the table is grouped (experimental!).
4904
+ *
4905
+ * @returns Reference to `this` in order to allow method chaining
4503
4906
  */
4504
4907
  attachGroup(
4505
4908
  /**
@@ -4523,6 +4926,8 @@ declare module "sap/ui/table/Table" {
4523
4926
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4524
4927
  *
4525
4928
  * fired when the table is grouped (experimental!).
4929
+ *
4930
+ * @returns Reference to `this` in order to allow method chaining
4526
4931
  */
4527
4932
  attachGroup(
4528
4933
  /**
@@ -4544,6 +4949,8 @@ declare module "sap/ui/table/Table" {
4544
4949
  *
4545
4950
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4546
4951
  * with the standard keyboard shortcut, if the focus is inside the table.
4952
+ *
4953
+ * @returns Reference to `this` in order to allow method chaining
4547
4954
  */
4548
4955
  attachPaste(
4549
4956
  /**
@@ -4570,6 +4977,8 @@ declare module "sap/ui/table/Table" {
4570
4977
  *
4571
4978
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4572
4979
  * with the standard keyboard shortcut, if the focus is inside the table.
4980
+ *
4981
+ * @returns Reference to `this` in order to allow method chaining
4573
4982
  */
4574
4983
  attachPaste(
4575
4984
  /**
@@ -4592,6 +5001,8 @@ declare module "sap/ui/table/Table" {
4592
5001
  * selection changes - to find out the selected rows you should better use the table selection API)
4593
5002
  *
4594
5003
  * **Note:** If a selection plugin is applied to the table, this event won't be fired.
5004
+ *
5005
+ * @returns Reference to `this` in order to allow method chaining
4595
5006
  */
4596
5007
  attachRowSelectionChange(
4597
5008
  /**
@@ -4619,6 +5030,8 @@ declare module "sap/ui/table/Table" {
4619
5030
  * selection changes - to find out the selected rows you should better use the table selection API)
4620
5031
  *
4621
5032
  * **Note:** If a selection plugin is applied to the table, this event won't be fired.
5033
+ *
5034
+ * @returns Reference to `this` in order to allow method chaining
4622
5035
  */
4623
5036
  attachRowSelectionChange(
4624
5037
  /**
@@ -4642,6 +5055,8 @@ declare module "sap/ui/table/Table" {
4642
5055
  * interaction, for example.
4643
5056
  *
4644
5057
  * **Note**: This event is fired often and must not be used for performance-critical tasks.
5058
+ *
5059
+ * @returns Reference to `this` in order to allow method chaining
4645
5060
  */
4646
5061
  attachRowsUpdated(
4647
5062
  /**
@@ -4670,6 +5085,8 @@ declare module "sap/ui/table/Table" {
4670
5085
  * interaction, for example.
4671
5086
  *
4672
5087
  * **Note**: This event is fired often and must not be used for performance-critical tasks.
5088
+ *
5089
+ * @returns Reference to `this` in order to allow method chaining
4673
5090
  */
4674
5091
  attachRowsUpdated(
4675
5092
  /**
@@ -4688,6 +5105,8 @@ declare module "sap/ui/table/Table" {
4688
5105
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4689
5106
  *
4690
5107
  * fired when the table is sorted.
5108
+ *
5109
+ * @returns Reference to `this` in order to allow method chaining
4691
5110
  */
4692
5111
  attachSort(
4693
5112
  /**
@@ -4711,6 +5130,8 @@ declare module "sap/ui/table/Table" {
4711
5130
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4712
5131
  *
4713
5132
  * fired when the table is sorted.
5133
+ *
5134
+ * @returns Reference to `this` in order to allow method chaining
4714
5135
  */
4715
5136
  attachSort(
4716
5137
  /**
@@ -4738,6 +5159,8 @@ declare module "sap/ui/table/Table" {
4738
5159
  *
4739
5160
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
4740
5161
  * of the possible properties of `oBindingInfo`.
5162
+ *
5163
+ * @returns Reference to `this` in order to allow method chaining
4741
5164
  */
4742
5165
  bindColumns(
4743
5166
  /**
@@ -4750,6 +5173,8 @@ declare module "sap/ui/table/Table" {
4750
5173
  *
4751
5174
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
4752
5175
  * of the possible properties of `oBindingInfo`.
5176
+ *
5177
+ * @returns Reference to `this` in order to allow method chaining
4753
5178
  */
4754
5179
  bindRows(
4755
5180
  /**
@@ -4759,58 +5184,82 @@ declare module "sap/ui/table/Table" {
4759
5184
  ): this;
4760
5185
  /**
4761
5186
  * Removes complete selection.
5187
+ *
5188
+ * @returns Reference to `this` in order to allow method chaining
4762
5189
  */
4763
5190
  clearSelection(): this;
4764
5191
  /**
4765
5192
  * Destroys all the columns in the aggregation {@link #getColumns columns}.
5193
+ *
5194
+ * @returns Reference to `this` in order to allow method chaining
4766
5195
  */
4767
5196
  destroyColumns(): this;
4768
5197
  /**
4769
5198
  * @SINCE 1.54
4770
5199
  *
4771
5200
  * Destroys the contextMenu in the aggregation {@link #getContextMenu contextMenu}.
5201
+ *
5202
+ * @returns Reference to `this` in order to allow method chaining
4772
5203
  */
4773
5204
  destroyContextMenu(): this;
4774
5205
  /**
4775
5206
  * Destroys all the extension in the aggregation {@link #getExtension extension}.
5207
+ *
5208
+ * @returns Reference to `this` in order to allow method chaining
4776
5209
  */
4777
5210
  destroyExtension(): this;
4778
5211
  /**
4779
5212
  * Destroys the footer in the aggregation {@link #getFooter footer}.
5213
+ *
5214
+ * @returns Reference to `this` in order to allow method chaining
4780
5215
  */
4781
5216
  destroyFooter(): this;
4782
5217
  /**
4783
5218
  * Destroys the noData in the aggregation {@link #getNoData noData}.
5219
+ *
5220
+ * @returns Reference to `this` in order to allow method chaining
4784
5221
  */
4785
5222
  destroyNoData(): this;
4786
5223
  /**
4787
5224
  * @SINCE 1.64
4788
5225
  *
4789
5226
  * Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
5227
+ *
5228
+ * @returns Reference to `this` in order to allow method chaining
4790
5229
  */
4791
5230
  destroyPlugins(): this;
4792
5231
  /**
4793
5232
  * Destroys the rowActionTemplate in the aggregation {@link #getRowActionTemplate rowActionTemplate}.
5233
+ *
5234
+ * @returns Reference to `this` in order to allow method chaining
4794
5235
  */
4795
5236
  destroyRowActionTemplate(): this;
4796
5237
  /**
4797
5238
  * Destroys all the rows in the aggregation {@link #getRows rows}.
5239
+ *
5240
+ * @returns Reference to `this` in order to allow method chaining
4798
5241
  */
4799
5242
  destroyRows(): this;
4800
5243
  /**
4801
5244
  * Destroys the rowSettingsTemplate in the aggregation {@link #getRowSettingsTemplate rowSettingsTemplate}.
5245
+ *
5246
+ * @returns Reference to `this` in order to allow method chaining
4802
5247
  */
4803
5248
  destroyRowSettingsTemplate(): this;
4804
5249
  /**
4805
5250
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
4806
5251
  *
4807
5252
  * Destroys the title in the aggregation {@link #getTitle title}.
5253
+ *
5254
+ * @returns Reference to `this` in order to allow method chaining
4808
5255
  */
4809
5256
  destroyTitle(): this;
4810
5257
  /**
4811
5258
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
4812
5259
  *
4813
5260
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
5261
+ *
5262
+ * @returns Reference to `this` in order to allow method chaining
4814
5263
  */
4815
5264
  destroyToolbar(): this;
4816
5265
  /**
@@ -4820,6 +5269,8 @@ declare module "sap/ui/table/Table" {
4820
5269
  * event of this `sap.ui.table.Table`.
4821
5270
  *
4822
5271
  * The passed function and listener object must match the ones used for event registration.
5272
+ *
5273
+ * @returns Reference to `this` in order to allow method chaining
4823
5274
  */
4824
5275
  detachBeforeOpenContextMenu(
4825
5276
  /**
@@ -4838,6 +5289,8 @@ declare module "sap/ui/table/Table" {
4838
5289
  * this `sap.ui.table.Table`.
4839
5290
  *
4840
5291
  * The passed function and listener object must match the ones used for event registration.
5292
+ *
5293
+ * @returns Reference to `this` in order to allow method chaining
4841
5294
  */
4842
5295
  detachBusyStateChanged(
4843
5296
  /**
@@ -4855,6 +5308,8 @@ declare module "sap/ui/table/Table" {
4855
5308
  * Detaches event handler `fnFunction` from the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
4856
5309
  *
4857
5310
  * The passed function and listener object must match the ones used for event registration.
5311
+ *
5312
+ * @returns Reference to `this` in order to allow method chaining
4858
5313
  */
4859
5314
  detachCellClick(
4860
5315
  /**
@@ -4874,6 +5329,8 @@ declare module "sap/ui/table/Table" {
4874
5329
  * this `sap.ui.table.Table`.
4875
5330
  *
4876
5331
  * The passed function and listener object must match the ones used for event registration.
5332
+ *
5333
+ * @returns Reference to `this` in order to allow method chaining
4877
5334
  */
4878
5335
  detachCellContextmenu(
4879
5336
  /**
@@ -4891,6 +5348,8 @@ declare module "sap/ui/table/Table" {
4891
5348
  * Detaches event handler `fnFunction` from the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
4892
5349
  *
4893
5350
  * The passed function and listener object must match the ones used for event registration.
5351
+ *
5352
+ * @returns Reference to `this` in order to allow method chaining
4894
5353
  */
4895
5354
  detachColumnFreeze(
4896
5355
  /**
@@ -4906,6 +5365,8 @@ declare module "sap/ui/table/Table" {
4906
5365
  * Detaches event handler `fnFunction` from the {@link #event:columnMove columnMove} event of this `sap.ui.table.Table`.
4907
5366
  *
4908
5367
  * The passed function and listener object must match the ones used for event registration.
5368
+ *
5369
+ * @returns Reference to `this` in order to allow method chaining
4909
5370
  */
4910
5371
  detachColumnMove(
4911
5372
  /**
@@ -4921,6 +5382,8 @@ declare module "sap/ui/table/Table" {
4921
5382
  * Detaches event handler `fnFunction` from the {@link #event:columnResize columnResize} event of this `sap.ui.table.Table`.
4922
5383
  *
4923
5384
  * The passed function and listener object must match the ones used for event registration.
5385
+ *
5386
+ * @returns Reference to `this` in order to allow method chaining
4924
5387
  */
4925
5388
  detachColumnResize(
4926
5389
  /**
@@ -4936,6 +5399,8 @@ declare module "sap/ui/table/Table" {
4936
5399
  * Detaches event handler `fnFunction` from the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
4937
5400
  *
4938
5401
  * The passed function and listener object must match the ones used for event registration.
5402
+ *
5403
+ * @returns Reference to `this` in order to allow method chaining
4939
5404
  */
4940
5405
  detachColumnSelect(
4941
5406
  /**
@@ -4952,6 +5417,8 @@ declare module "sap/ui/table/Table" {
4952
5417
  * this `sap.ui.table.Table`.
4953
5418
  *
4954
5419
  * The passed function and listener object must match the ones used for event registration.
5420
+ *
5421
+ * @returns Reference to `this` in order to allow method chaining
4955
5422
  */
4956
5423
  detachColumnVisibility(
4957
5424
  /**
@@ -4969,6 +5436,8 @@ declare module "sap/ui/table/Table" {
4969
5436
  * Detaches event handler `fnFunction` from the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
4970
5437
  *
4971
5438
  * The passed function and listener object must match the ones used for event registration.
5439
+ *
5440
+ * @returns Reference to `this` in order to allow method chaining
4972
5441
  */
4973
5442
  detachCustomFilter(
4974
5443
  /**
@@ -4984,6 +5453,8 @@ declare module "sap/ui/table/Table" {
4984
5453
  * Detaches event handler `fnFunction` from the {@link #event:filter filter} event of this `sap.ui.table.Table`.
4985
5454
  *
4986
5455
  * The passed function and listener object must match the ones used for event registration.
5456
+ *
5457
+ * @returns Reference to `this` in order to allow method chaining
4987
5458
  */
4988
5459
  detachFilter(
4989
5460
  /**
@@ -5002,6 +5473,8 @@ declare module "sap/ui/table/Table" {
5002
5473
  * event of this `sap.ui.table.Table`.
5003
5474
  *
5004
5475
  * The passed function and listener object must match the ones used for event registration.
5476
+ *
5477
+ * @returns Reference to `this` in order to allow method chaining
5005
5478
  */
5006
5479
  detachFirstVisibleRowChanged(
5007
5480
  /**
@@ -5017,6 +5490,8 @@ declare module "sap/ui/table/Table" {
5017
5490
  * Detaches event handler `fnFunction` from the {@link #event:group group} event of this `sap.ui.table.Table`.
5018
5491
  *
5019
5492
  * The passed function and listener object must match the ones used for event registration.
5493
+ *
5494
+ * @returns Reference to `this` in order to allow method chaining
5020
5495
  */
5021
5496
  detachGroup(
5022
5497
  /**
@@ -5034,6 +5509,8 @@ declare module "sap/ui/table/Table" {
5034
5509
  * Detaches event handler `fnFunction` from the {@link #event:paste paste} event of this `sap.ui.table.Table`.
5035
5510
  *
5036
5511
  * The passed function and listener object must match the ones used for event registration.
5512
+ *
5513
+ * @returns Reference to `this` in order to allow method chaining
5037
5514
  */
5038
5515
  detachPaste(
5039
5516
  /**
@@ -5050,6 +5527,8 @@ declare module "sap/ui/table/Table" {
5050
5527
  * of this `sap.ui.table.Table`.
5051
5528
  *
5052
5529
  * The passed function and listener object must match the ones used for event registration.
5530
+ *
5531
+ * @returns Reference to `this` in order to allow method chaining
5053
5532
  */
5054
5533
  detachRowSelectionChange(
5055
5534
  /**
@@ -5067,6 +5546,8 @@ declare module "sap/ui/table/Table" {
5067
5546
  * Detaches event handler `fnFunction` from the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
5068
5547
  *
5069
5548
  * The passed function and listener object must match the ones used for event registration.
5549
+ *
5550
+ * @returns Reference to `this` in order to allow method chaining
5070
5551
  */
5071
5552
  detachRowsUpdated(
5072
5553
  /**
@@ -5082,6 +5563,8 @@ declare module "sap/ui/table/Table" {
5082
5563
  * Detaches event handler `fnFunction` from the {@link #event:sort sort} event of this `sap.ui.table.Table`.
5083
5564
  *
5084
5565
  * The passed function and listener object must match the ones used for event registration.
5566
+ *
5567
+ * @returns Reference to `this` in order to allow method chaining
5085
5568
  */
5086
5569
  detachSort(
5087
5570
  /**
@@ -5102,6 +5585,8 @@ declare module "sap/ui/table/Table" {
5102
5585
  *
5103
5586
  * **Please note: This method uses synchronous requests. Support and functioning ends with the support
5104
5587
  * for synchronous requests in browsers.**
5588
+ *
5589
+ * @returns Export object
5105
5590
  */
5106
5591
  exportData(
5107
5592
  /**
@@ -5130,6 +5615,8 @@ declare module "sap/ui/table/Table" {
5130
5615
  *
5131
5616
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5132
5617
  * event object. The return value of this method indicates whether the default action should be executed.
5618
+ *
5619
+ * @returns Whether or not to prevent the default action
5133
5620
  */
5134
5621
  fireBeforeOpenContextMenu(
5135
5622
  /**
@@ -5154,6 +5641,8 @@ declare module "sap/ui/table/Table" {
5154
5641
  * @SINCE 1.37.0
5155
5642
  *
5156
5643
  * Fires event {@link #event:busyStateChanged busyStateChanged} to attached listeners.
5644
+ *
5645
+ * @returns Reference to `this` in order to allow method chaining
5157
5646
  */
5158
5647
  fireBusyStateChanged(
5159
5648
  /**
@@ -5168,6 +5657,8 @@ declare module "sap/ui/table/Table" {
5168
5657
  *
5169
5658
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5170
5659
  * event object. The return value of this method indicates whether the default action should be executed.
5660
+ *
5661
+ * @returns Whether or not to prevent the default action
5171
5662
  */
5172
5663
  fireCellClick(
5173
5664
  /**
@@ -5209,6 +5700,8 @@ declare module "sap/ui/table/Table" {
5209
5700
  *
5210
5701
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5211
5702
  * event object. The return value of this method indicates whether the default action should be executed.
5703
+ *
5704
+ * @returns Whether or not to prevent the default action
5212
5705
  */
5213
5706
  fireCellContextmenu(
5214
5707
  /**
@@ -5249,6 +5742,8 @@ declare module "sap/ui/table/Table" {
5249
5742
  *
5250
5743
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5251
5744
  * event object. The return value of this method indicates whether the default action should be executed.
5745
+ *
5746
+ * @returns Whether or not to prevent the default action
5252
5747
  */
5253
5748
  fireColumnFreeze(
5254
5749
  /**
@@ -5266,6 +5761,8 @@ declare module "sap/ui/table/Table" {
5266
5761
  *
5267
5762
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5268
5763
  * event object. The return value of this method indicates whether the default action should be executed.
5764
+ *
5765
+ * @returns Whether or not to prevent the default action
5269
5766
  */
5270
5767
  fireColumnMove(
5271
5768
  /**
@@ -5287,6 +5784,8 @@ declare module "sap/ui/table/Table" {
5287
5784
  *
5288
5785
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5289
5786
  * event object. The return value of this method indicates whether the default action should be executed.
5787
+ *
5788
+ * @returns Whether or not to prevent the default action
5290
5789
  */
5291
5790
  fireColumnResize(
5292
5791
  /**
@@ -5308,6 +5807,8 @@ declare module "sap/ui/table/Table" {
5308
5807
  *
5309
5808
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5310
5809
  * event object. The return value of this method indicates whether the default action should be executed.
5810
+ *
5811
+ * @returns Whether or not to prevent the default action
5311
5812
  */
5312
5813
  fireColumnSelect(
5313
5814
  /**
@@ -5325,6 +5826,8 @@ declare module "sap/ui/table/Table" {
5325
5826
  *
5326
5827
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5327
5828
  * event object. The return value of this method indicates whether the default action should be executed.
5829
+ *
5830
+ * @returns Whether or not to prevent the default action
5328
5831
  */
5329
5832
  fireColumnVisibility(
5330
5833
  /**
@@ -5345,6 +5848,8 @@ declare module "sap/ui/table/Table" {
5345
5848
  * @SINCE 1.23.0
5346
5849
  *
5347
5850
  * Fires event {@link #event:customFilter customFilter} to attached listeners.
5851
+ *
5852
+ * @returns Reference to `this` in order to allow method chaining
5348
5853
  */
5349
5854
  fireCustomFilter(
5350
5855
  /**
@@ -5357,6 +5862,8 @@ declare module "sap/ui/table/Table" {
5357
5862
  *
5358
5863
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5359
5864
  * event object. The return value of this method indicates whether the default action should be executed.
5865
+ *
5866
+ * @returns Whether or not to prevent the default action
5360
5867
  */
5361
5868
  fireFilter(
5362
5869
  /**
@@ -5377,6 +5884,8 @@ declare module "sap/ui/table/Table" {
5377
5884
  * @SINCE 1.37.0
5378
5885
  *
5379
5886
  * Fires event {@link #event:firstVisibleRowChanged firstVisibleRowChanged} to attached listeners.
5887
+ *
5888
+ * @returns Reference to `this` in order to allow method chaining
5380
5889
  */
5381
5890
  fireFirstVisibleRowChanged(
5382
5891
  /**
@@ -5389,6 +5898,8 @@ declare module "sap/ui/table/Table" {
5389
5898
  *
5390
5899
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5391
5900
  * event object. The return value of this method indicates whether the default action should be executed.
5901
+ *
5902
+ * @returns Whether or not to prevent the default action
5392
5903
  */
5393
5904
  fireGroup(
5394
5905
  /**
@@ -5408,6 +5919,8 @@ declare module "sap/ui/table/Table" {
5408
5919
  *
5409
5920
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5410
5921
  * event object. The return value of this method indicates whether the default action should be executed.
5922
+ *
5923
+ * @returns Whether or not to prevent the default action
5411
5924
  */
5412
5925
  firePaste(
5413
5926
  /**
@@ -5423,6 +5936,8 @@ declare module "sap/ui/table/Table" {
5423
5936
  ): boolean;
5424
5937
  /**
5425
5938
  * Fires event {@link #event:rowSelectionChange rowSelectionChange} to attached listeners.
5939
+ *
5940
+ * @returns Reference to `this` in order to allow method chaining
5426
5941
  */
5427
5942
  fireRowSelectionChange(
5428
5943
  /**
@@ -5436,7 +5951,7 @@ declare module "sap/ui/table/Table" {
5436
5951
  /**
5437
5952
  * binding context of the row which has been clicked so that selection has been changed
5438
5953
  */
5439
- rowContext?: object;
5954
+ rowContext?: Context;
5440
5955
  /**
5441
5956
  * array of row indices which selection has been changed (either selected or deselected)
5442
5957
  */
@@ -5456,6 +5971,8 @@ declare module "sap/ui/table/Table" {
5456
5971
  * @SINCE 1.86
5457
5972
  *
5458
5973
  * Fires event {@link #event:rowsUpdated rowsUpdated} to attached listeners.
5974
+ *
5975
+ * @returns Reference to `this` in order to allow method chaining
5459
5976
  */
5460
5977
  fireRowsUpdated(
5461
5978
  /**
@@ -5468,6 +5985,8 @@ declare module "sap/ui/table/Table" {
5468
5985
  *
5469
5986
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5470
5987
  * event object. The return value of this method indicates whether the default action should be executed.
5988
+ *
5989
+ * @returns Whether or not to prevent the default action
5471
5990
  */
5472
5991
  fireSort(
5473
5992
  /**
@@ -5518,6 +6037,8 @@ declare module "sap/ui/table/Table" {
5518
6037
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
5519
6038
  *
5520
6039
  * Default value is `false`.
6040
+ *
6041
+ * @returns Value of property `alternateRowColors`
5521
6042
  */
5522
6043
  getAlternateRowColors(): boolean;
5523
6044
  /**
@@ -5527,6 +6048,8 @@ declare module "sap/ui/table/Table" {
5527
6048
  getAriaLabelledBy(): ID[];
5528
6049
  /**
5529
6050
  * Get the binding object for a specific aggregation/property.
6051
+ *
6052
+ * @returns The binding for the given name
5530
6053
  */
5531
6054
  getBinding(
5532
6055
  /**
@@ -5544,6 +6067,8 @@ declare module "sap/ui/table/Table" {
5544
6067
  *
5545
6068
  * **Note**: In a {@link sap.ui.table.Column#getMultiLabels MultiLabel} scenario, the height is applied
5546
6069
  * to each individual row of the table's header.
6070
+ *
6071
+ * @returns Value of property `columnHeaderHeight`
5547
6072
  */
5548
6073
  getColumnHeaderHeight(): int;
5549
6074
  /**
@@ -5555,6 +6080,8 @@ declare module "sap/ui/table/Table" {
5555
6080
  * table can't be guaranteed any more.
5556
6081
  *
5557
6082
  * Default value is `true`.
6083
+ *
6084
+ * @returns Value of property `columnHeaderVisible`
5558
6085
  */
5559
6086
  getColumnHeaderVisible(): boolean;
5560
6087
  /**
@@ -5563,12 +6090,6 @@ declare module "sap/ui/table/Table" {
5563
6090
  * Columns of the Table
5564
6091
  */
5565
6092
  getColumns(): Column[];
5566
- /**
5567
- * In contrast to the function `getFixedColumnCount` which returns the value of the property `fixedColumnCount`,
5568
- * this function returns the actual fixed column count computed based on the column spans of the header,
5569
- * the width of the table and the width of the columns.
5570
- */
5571
- getComputedFixedColumnCount(): int;
5572
6093
  /**
5573
6094
  * Returns the context of a row by its index. Please note that for server-based models like OData, the supplied
5574
6095
  * index might not have been loaded yet. If the context is not available at the client, the binding will
@@ -5577,6 +6098,8 @@ declare module "sap/ui/table/Table" {
5577
6098
  *
5578
6099
  * For server-based models you should consider to only make this API call when the index is within the currently
5579
6100
  * visible scroll area.
6101
+ *
6102
+ * @returns The context at this index or null
5580
6103
  */
5581
6104
  getContextByIndex(
5582
6105
  /**
@@ -5625,6 +6148,8 @@ declare module "sap/ui/table/Table" {
5625
6148
  * color in certain themes!)
5626
6149
  *
5627
6150
  * Default value is `true`.
6151
+ *
6152
+ * @returns Value of property `editable`
5628
6153
  */
5629
6154
  getEditable(): boolean;
5630
6155
  /**
@@ -5639,6 +6164,8 @@ declare module "sap/ui/table/Table" {
5639
6164
  * {@link sap.ui.core.Control#setBusy}.
5640
6165
  *
5641
6166
  * Default value is `false`.
6167
+ *
6168
+ * @returns Value of property `enableBusyIndicator`
5642
6169
  */
5643
6170
  getEnableBusyIndicator(): boolean;
5644
6171
  /**
@@ -5649,6 +6176,8 @@ declare module "sap/ui/table/Table" {
5649
6176
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
5650
6177
  *
5651
6178
  * Default value is `false`.
6179
+ *
6180
+ * @returns Value of property `enableCellFilter`
5652
6181
  */
5653
6182
  getEnableCellFilter(): boolean;
5654
6183
  /**
@@ -5659,6 +6188,8 @@ declare module "sap/ui/table/Table" {
5659
6188
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
5660
6189
  *
5661
6190
  * Default value is `false`.
6191
+ *
6192
+ * @returns Value of property `enableColumnFreeze`
5662
6193
  */
5663
6194
  getEnableColumnFreeze(): boolean;
5664
6195
  /**
@@ -5667,6 +6198,8 @@ declare module "sap/ui/table/Table" {
5667
6198
  * Flag to enable or disable column reordering
5668
6199
  *
5669
6200
  * Default value is `true`.
6201
+ *
6202
+ * @returns Value of property `enableColumnReordering`
5670
6203
  */
5671
6204
  getEnableColumnReordering(): boolean;
5672
6205
  /**
@@ -5678,6 +6211,8 @@ declare module "sap/ui/table/Table" {
5678
6211
  * button will be rendered for which' press event (customFilter) you can register an event handler.
5679
6212
  *
5680
6213
  * Default value is `false`.
6214
+ *
6215
+ * @returns Value of property `enableCustomFilter`
5681
6216
  */
5682
6217
  getEnableCustomFilter(): boolean;
5683
6218
  /**
@@ -5702,6 +6237,8 @@ declare module "sap/ui/table/Table" {
5702
6237
  * table is grouped by another column or grouping is disabled.
5703
6238
  *
5704
6239
  * Default value is `false`.
6240
+ *
6241
+ * @returns Value of property `enableGrouping`
5705
6242
  */
5706
6243
  getEnableGrouping(): boolean;
5707
6244
  /**
@@ -5713,6 +6250,8 @@ declare module "sap/ui/table/Table" {
5713
6250
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
5714
6251
  *
5715
6252
  * Default value is `true`.
6253
+ *
6254
+ * @returns Value of property `enableSelectAll`
5716
6255
  */
5717
6256
  getEnableSelectAll(): boolean;
5718
6257
  /**
@@ -5728,6 +6267,8 @@ declare module "sap/ui/table/Table" {
5728
6267
  * First visible row.
5729
6268
  *
5730
6269
  * Default value is `0`.
6270
+ *
6271
+ * @returns Value of property `firstVisibleRow`
5731
6272
  */
5732
6273
  getFirstVisibleRow(): int;
5733
6274
  /**
@@ -5742,6 +6283,8 @@ declare module "sap/ui/table/Table" {
5742
6283
  * client model}.
5743
6284
  *
5744
6285
  * Default value is `0`.
6286
+ *
6287
+ * @returns Value of property `fixedBottomRowCount`
5745
6288
  */
5746
6289
  getFixedBottomRowCount(): int;
5747
6290
  /**
@@ -5756,6 +6299,8 @@ declare module "sap/ui/table/Table" {
5756
6299
  * able to scroll horizontally.
5757
6300
  *
5758
6301
  * Default value is `0`.
6302
+ *
6303
+ * @returns Value of property `fixedColumnCount`
5759
6304
  */
5760
6305
  getFixedColumnCount(): int;
5761
6306
  /**
@@ -5768,6 +6313,8 @@ declare module "sap/ui/table/Table" {
5768
6313
  * client model}.
5769
6314
  *
5770
6315
  * Default value is `0`.
6316
+ *
6317
+ * @returns Value of property `fixedRowCount`
5771
6318
  */
5772
6319
  getFixedRowCount(): int;
5773
6320
  /**
@@ -5789,6 +6336,8 @@ declare module "sap/ui/table/Table" {
5789
6336
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
5790
6337
  *
5791
6338
  * Default value is `5`.
6339
+ *
6340
+ * @returns Value of property `minAutoRowCount`
5792
6341
  */
5793
6342
  getMinAutoRowCount(): int;
5794
6343
  /**
@@ -5800,6 +6349,8 @@ declare module "sap/ui/table/Table" {
5800
6349
  * option.
5801
6350
  *
5802
6351
  * Default value is `Scrollbar`.
6352
+ *
6353
+ * @returns Value of property `navigationMode`
5803
6354
  */
5804
6355
  getNavigationMode(): NavigationMode | keyof typeof NavigationMode;
5805
6356
  /**
@@ -5832,6 +6383,8 @@ declare module "sap/ui/table/Table" {
5832
6383
  * `1` and `2` are possible.
5833
6384
  *
5834
6385
  * Default value is `0`.
6386
+ *
6387
+ * @returns Value of property `rowActionCount`
5835
6388
  */
5836
6389
  getRowActionCount(): int;
5837
6390
  /**
@@ -5858,6 +6411,8 @@ declare module "sap/ui/table/Table" {
5858
6411
  *
5859
6412
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
5860
6413
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6414
+ *
6415
+ * @returns Value of property `rowHeight`
5861
6416
  */
5862
6417
  getRowHeight(): int;
5863
6418
  /**
@@ -5891,10 +6446,14 @@ declare module "sap/ui/table/Table" {
5891
6446
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices}
5892
6447
  *
5893
6448
  * Retrieves the lead selection index.
6449
+ *
6450
+ * @returns Currently Selected Index.
5894
6451
  */
5895
6452
  getSelectedIndex(): int;
5896
6453
  /**
5897
6454
  * Zero-based indices of selected items, wrapped in an array. An empty array means "no selection".
6455
+ *
6456
+ * @returns Selected indices
5898
6457
  */
5899
6458
  getSelectedIndices(): int[];
5900
6459
  /**
@@ -5906,6 +6465,8 @@ declare module "sap/ui/table/Table" {
5906
6465
  * on table type) is enabled, even if `sap.ui.table.SelectionBehavior.RowOnly` is set.
5907
6466
  *
5908
6467
  * Default value is `RowSelector`.
6468
+ *
6469
+ * @returns Value of property `selectionBehavior`
5909
6470
  */
5910
6471
  getSelectionBehavior(): SelectionBehavior | keyof typeof SelectionBehavior;
5911
6472
  /**
@@ -5919,6 +6480,8 @@ declare module "sap/ui/table/Table" {
5919
6480
  * applied to the table, the selection mode is controlled by the plugin.
5920
6481
  *
5921
6482
  * Default value is `MultiToggle`.
6483
+ *
6484
+ * @returns Value of property `selectionMode`
5922
6485
  */
5923
6486
  getSelectionMode(): SelectionMode | keyof typeof SelectionMode;
5924
6487
  /**
@@ -5928,6 +6491,8 @@ declare module "sap/ui/table/Table" {
5928
6491
  * header menu. It allows to show or hide columns
5929
6492
  *
5930
6493
  * Default value is `false`.
6494
+ *
6495
+ * @returns Value of property `showColumnVisibilityMenu`
5931
6496
  */
5932
6497
  getShowColumnVisibilityMenu(): boolean;
5933
6498
  /**
@@ -5937,6 +6502,8 @@ declare module "sap/ui/table/Table" {
5937
6502
  * just show a grid of empty cells
5938
6503
  *
5939
6504
  * Default value is `true`.
6505
+ *
6506
+ * @returns Value of property `showNoData`
5940
6507
  */
5941
6508
  getShowNoData(): boolean;
5942
6509
  /**
@@ -5948,6 +6515,8 @@ declare module "sap/ui/table/Table" {
5948
6515
  * anymore on the Table content.
5949
6516
  *
5950
6517
  * Default value is `false`.
6518
+ *
6519
+ * @returns Value of property `showOverlay`
5951
6520
  */
5952
6521
  getShowOverlay(): boolean;
5953
6522
  /**
@@ -5956,18 +6525,22 @@ declare module "sap/ui/table/Table" {
5956
6525
  * {@link sap.ui.table.Column#setSorted} and {@link sap.ui.table.Column#setSortOrder}.
5957
6526
  * See:
5958
6527
  * sap.ui.table.Table#sort
6528
+ *
6529
+ * @returns Array of sorted columns
5959
6530
  */
5960
6531
  getSortedColumns(): Column[];
5961
6532
  /**
5962
6533
  * Gets current value of property {@link #getThreshold threshold}.
5963
6534
  *
5964
- * The `threshold` defines how many additional (not yet visible records) shall be pre-fetched to enable
5965
- * smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount` is
5966
- * 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
5967
- * is lower than the `visibleRowCount`, the `visibleRowCount` will be used as the `threshold`. If the value
5968
- * is 0 then the thresholding is disabled.
6535
+ * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
6536
+ * enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
6537
+ * is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
6538
+ * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
6539
+ * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
5969
6540
  *
5970
6541
  * Default value is `100`.
6542
+ *
6543
+ * @returns Value of property `threshold`
5971
6544
  */
5972
6545
  getThreshold(): int;
5973
6546
  /**
@@ -5993,6 +6566,8 @@ declare module "sap/ui/table/Table" {
5993
6566
  * Number of visible rows of the table.
5994
6567
  *
5995
6568
  * Default value is `10`.
6569
+ *
6570
+ * @returns Value of property `visibleRowCount`
5996
6571
  */
5997
6572
  getVisibleRowCount(): int;
5998
6573
  /**
@@ -6017,6 +6592,8 @@ declare module "sap/ui/table/Table" {
6017
6592
  * after rendering. The user can change the `visibleRowCount` by dragging a resizer.
6018
6593
  *
6019
6594
  * Default value is `Fixed`.
6595
+ *
6596
+ * @returns Value of property `visibleRowCountMode`
6020
6597
  */
6021
6598
  getVisibleRowCountMode():
6022
6599
  | VisibleRowCountMode
@@ -6027,11 +6604,15 @@ declare module "sap/ui/table/Table" {
6027
6604
  * Width of the Table.
6028
6605
  *
6029
6606
  * Default value is `'auto'`.
6607
+ *
6608
+ * @returns Value of property `width`
6030
6609
  */
6031
6610
  getWidth(): CSSSize;
6032
6611
  /**
6033
6612
  * Checks for the provided `sap.ui.table.Column` in the aggregation {@link #getColumns columns}. and returns
6034
6613
  * its index if found or -1 otherwise.
6614
+ *
6615
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6035
6616
  */
6036
6617
  indexOfColumn(
6037
6618
  /**
@@ -6042,6 +6623,8 @@ declare module "sap/ui/table/Table" {
6042
6623
  /**
6043
6624
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getExtension extension}. and
6044
6625
  * returns its index if found or -1 otherwise.
6626
+ *
6627
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6045
6628
  */
6046
6629
  indexOfExtension(
6047
6630
  /**
@@ -6054,6 +6637,8 @@ declare module "sap/ui/table/Table" {
6054
6637
  *
6055
6638
  * Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins
6056
6639
  * plugins}. and returns its index if found or -1 otherwise.
6640
+ *
6641
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6057
6642
  */
6058
6643
  indexOfPlugin(
6059
6644
  /**
@@ -6064,6 +6649,8 @@ declare module "sap/ui/table/Table" {
6064
6649
  /**
6065
6650
  * Checks for the provided `sap.ui.table.Row` in the aggregation {@link #getRows rows}. and returns its
6066
6651
  * index if found or -1 otherwise.
6652
+ *
6653
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6067
6654
  */
6068
6655
  indexOfRow(
6069
6656
  /**
@@ -6073,6 +6660,8 @@ declare module "sap/ui/table/Table" {
6073
6660
  ): int;
6074
6661
  /**
6075
6662
  * Inserts a column into the aggregation {@link #getColumns columns}.
6663
+ *
6664
+ * @returns Reference to `this` in order to allow method chaining
6076
6665
  */
6077
6666
  insertColumn(
6078
6667
  /**
@@ -6088,6 +6677,8 @@ declare module "sap/ui/table/Table" {
6088
6677
  ): this;
6089
6678
  /**
6090
6679
  * Inserts a extension into the aggregation {@link #getExtension extension}.
6680
+ *
6681
+ * @returns Reference to `this` in order to allow method chaining
6091
6682
  */
6092
6683
  insertExtension(
6093
6684
  /**
@@ -6105,6 +6696,8 @@ declare module "sap/ui/table/Table" {
6105
6696
  * @SINCE 1.64
6106
6697
  *
6107
6698
  * Inserts a plugin into the aggregation {@link #getPlugins plugins}.
6699
+ *
6700
+ * @returns Reference to `this` in order to allow method chaining
6108
6701
  */
6109
6702
  insertPlugin(
6110
6703
  /**
@@ -6120,6 +6713,8 @@ declare module "sap/ui/table/Table" {
6120
6713
  ): this;
6121
6714
  /**
6122
6715
  * Inserts a row into the aggregation {@link #getRows rows}.
6716
+ *
6717
+ * @returns Reference to `this` in order to allow method chaining
6123
6718
  */
6124
6719
  insertRow(
6125
6720
  /**
@@ -6135,6 +6730,8 @@ declare module "sap/ui/table/Table" {
6135
6730
  ): this;
6136
6731
  /**
6137
6732
  * Checks whether an index is selected.
6733
+ *
6734
+ * @returns Whether the index is selected
6138
6735
  */
6139
6736
  isIndexSelected(
6140
6737
  /**
@@ -6144,18 +6741,24 @@ declare module "sap/ui/table/Table" {
6144
6741
  ): boolean;
6145
6742
  /**
6146
6743
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
6744
+ *
6745
+ * @returns An array of the removed elements (might be empty)
6147
6746
  */
6148
6747
  removeAllAriaLabelledBy(): ID[];
6149
6748
  /**
6150
6749
  * Removes all the controls from the aggregation {@link #getColumns columns}.
6151
6750
  *
6152
6751
  * Additionally, it unregisters them from the hosting UIArea.
6752
+ *
6753
+ * @returns An array of the removed elements (might be empty)
6153
6754
  */
6154
6755
  removeAllColumns(): Column[];
6155
6756
  /**
6156
6757
  * Removes all the controls from the aggregation {@link #getExtension extension}.
6157
6758
  *
6158
6759
  * Additionally, it unregisters them from the hosting UIArea.
6760
+ *
6761
+ * @returns An array of the removed elements (might be empty)
6159
6762
  */
6160
6763
  removeAllExtension(): Control[];
6161
6764
  /**
@@ -6164,16 +6767,22 @@ declare module "sap/ui/table/Table" {
6164
6767
  * Removes all the controls from the aggregation {@link #getPlugins plugins}.
6165
6768
  *
6166
6769
  * Additionally, it unregisters them from the hosting UIArea.
6770
+ *
6771
+ * @returns An array of the removed elements (might be empty)
6167
6772
  */
6168
6773
  removeAllPlugins(): SelectionPlugin[];
6169
6774
  /**
6170
6775
  * Removes all the controls from the aggregation {@link #getRows rows}.
6171
6776
  *
6172
6777
  * Additionally, it unregisters them from the hosting UIArea.
6778
+ *
6779
+ * @returns An array of the removed elements (might be empty)
6173
6780
  */
6174
6781
  removeAllRows(): Row[];
6175
6782
  /**
6176
6783
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
6784
+ *
6785
+ * @returns The removed ariaLabelledBy or `null`
6177
6786
  */
6178
6787
  removeAriaLabelledBy(
6179
6788
  /**
@@ -6183,6 +6792,8 @@ declare module "sap/ui/table/Table" {
6183
6792
  ): ID;
6184
6793
  /**
6185
6794
  * Removes a column from the aggregation {@link #getColumns columns}.
6795
+ *
6796
+ * @returns The removed column or `null`
6186
6797
  */
6187
6798
  removeColumn(
6188
6799
  /**
@@ -6192,6 +6803,8 @@ declare module "sap/ui/table/Table" {
6192
6803
  ): Column;
6193
6804
  /**
6194
6805
  * Removes a extension from the aggregation {@link #getExtension extension}.
6806
+ *
6807
+ * @returns The removed extension or `null`
6195
6808
  */
6196
6809
  removeExtension(
6197
6810
  /**
@@ -6203,6 +6816,8 @@ declare module "sap/ui/table/Table" {
6203
6816
  * @SINCE 1.64
6204
6817
  *
6205
6818
  * Removes a plugin from the aggregation {@link #getPlugins plugins}.
6819
+ *
6820
+ * @returns The removed plugin or `null`
6206
6821
  */
6207
6822
  removePlugin(
6208
6823
  /**
@@ -6212,6 +6827,8 @@ declare module "sap/ui/table/Table" {
6212
6827
  ): SelectionPlugin;
6213
6828
  /**
6214
6829
  * Removes a row from the aggregation {@link #getRows rows}.
6830
+ *
6831
+ * @returns The removed row or `null`
6215
6832
  */
6216
6833
  removeRow(
6217
6834
  /**
@@ -6222,6 +6839,8 @@ declare module "sap/ui/table/Table" {
6222
6839
  /**
6223
6840
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
6224
6841
  * is removed from the selection.
6842
+ *
6843
+ * @returns Reference to `this` in order to allow method chaining
6225
6844
  */
6226
6845
  removeSelectionInterval(
6227
6846
  /**
@@ -6237,6 +6856,8 @@ declare module "sap/ui/table/Table" {
6237
6856
  * Adds all rows to the selection. Please note that for server based models like OData the indices which
6238
6857
  * are considered to be selected might not be available at the client yet. Calling getContextByIndex might
6239
6858
  * not return a result but trigger a roundtrip to request this single entity.
6859
+ *
6860
+ * @returns Reference to `this` in order to allow method chaining
6240
6861
  */
6241
6862
  selectAll(): this;
6242
6863
  /**
@@ -6249,6 +6870,8 @@ declare module "sap/ui/table/Table" {
6249
6870
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6250
6871
  *
6251
6872
  * Default value is `false`.
6873
+ *
6874
+ * @returns Reference to `this` in order to allow method chaining
6252
6875
  */
6253
6876
  setAlternateRowColors(
6254
6877
  /**
@@ -6268,6 +6891,8 @@ declare module "sap/ui/table/Table" {
6268
6891
  * to each individual row of the table's header.
6269
6892
  *
6270
6893
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6894
+ *
6895
+ * @returns Reference to `this` in order to allow method chaining
6271
6896
  */
6272
6897
  setColumnHeaderHeight(
6273
6898
  /**
@@ -6286,6 +6911,8 @@ declare module "sap/ui/table/Table" {
6286
6911
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6287
6912
  *
6288
6913
  * Default value is `true`.
6914
+ *
6915
+ * @returns Reference to `this` in order to allow method chaining
6289
6916
  */
6290
6917
  setColumnHeaderVisible(
6291
6918
  /**
@@ -6297,6 +6924,8 @@ declare module "sap/ui/table/Table" {
6297
6924
  * @SINCE 1.54
6298
6925
  *
6299
6926
  * Sets the aggregated {@link #getContextMenu contextMenu}.
6927
+ *
6928
+ * @returns Reference to `this` in order to allow method chaining
6300
6929
  */
6301
6930
  setContextMenu(
6302
6931
  /**
@@ -6313,6 +6942,8 @@ declare module "sap/ui/table/Table" {
6313
6942
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6314
6943
  *
6315
6944
  * Default value is `true`.
6945
+ *
6946
+ * @returns Reference to `this` in order to allow method chaining
6316
6947
  */
6317
6948
  setEditable(
6318
6949
  /**
@@ -6334,6 +6965,8 @@ declare module "sap/ui/table/Table" {
6334
6965
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6335
6966
  *
6336
6967
  * Default value is `false`.
6968
+ *
6969
+ * @returns Reference to `this` in order to allow method chaining
6337
6970
  */
6338
6971
  setEnableBusyIndicator(
6339
6972
  /**
@@ -6351,6 +6984,8 @@ declare module "sap/ui/table/Table" {
6351
6984
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6352
6985
  *
6353
6986
  * Default value is `false`.
6987
+ *
6988
+ * @returns Reference to `this` in order to allow method chaining
6354
6989
  */
6355
6990
  setEnableCellFilter(
6356
6991
  /**
@@ -6368,6 +7003,8 @@ declare module "sap/ui/table/Table" {
6368
7003
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6369
7004
  *
6370
7005
  * Default value is `false`.
7006
+ *
7007
+ * @returns Reference to `this` in order to allow method chaining
6371
7008
  */
6372
7009
  setEnableColumnFreeze(
6373
7010
  /**
@@ -6383,6 +7020,8 @@ declare module "sap/ui/table/Table" {
6383
7020
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6384
7021
  *
6385
7022
  * Default value is `true`.
7023
+ *
7024
+ * @returns Reference to `this` in order to allow method chaining
6386
7025
  */
6387
7026
  setEnableColumnReordering(
6388
7027
  /**
@@ -6401,6 +7040,8 @@ declare module "sap/ui/table/Table" {
6401
7040
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6402
7041
  *
6403
7042
  * Default value is `false`.
7043
+ *
7044
+ * @returns Reference to `this` in order to allow method chaining
6404
7045
  */
6405
7046
  setEnableCustomFilter(
6406
7047
  /**
@@ -6432,6 +7073,8 @@ declare module "sap/ui/table/Table" {
6432
7073
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6433
7074
  *
6434
7075
  * Default value is `false`.
7076
+ *
7077
+ * @returns Reference to `this` in order to allow method chaining
6435
7078
  */
6436
7079
  setEnableGrouping(
6437
7080
  /**
@@ -6450,6 +7093,8 @@ declare module "sap/ui/table/Table" {
6450
7093
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6451
7094
  *
6452
7095
  * Default value is `true`.
7096
+ *
7097
+ * @returns Reference to `this` in order to allow method chaining
6453
7098
  */
6454
7099
  setEnableSelectAll(
6455
7100
  /**
@@ -6465,6 +7110,8 @@ declare module "sap/ui/table/Table" {
6465
7110
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6466
7111
  *
6467
7112
  * Default value is `0`.
7113
+ *
7114
+ * @returns Reference to `this` in order to allow method chaining
6468
7115
  */
6469
7116
  setFirstVisibleRow(
6470
7117
  /**
@@ -6486,6 +7133,8 @@ declare module "sap/ui/table/Table" {
6486
7133
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6487
7134
  *
6488
7135
  * Default value is `0`.
7136
+ *
7137
+ * @returns Reference to `this` in order to allow method chaining
6489
7138
  */
6490
7139
  setFixedBottomRowCount(
6491
7140
  /**
@@ -6507,6 +7156,8 @@ declare module "sap/ui/table/Table" {
6507
7156
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6508
7157
  *
6509
7158
  * Default value is `0`.
7159
+ *
7160
+ * @returns Reference to `this` in order to allow method chaining
6510
7161
  */
6511
7162
  setFixedColumnCount(
6512
7163
  /**
@@ -6526,6 +7177,8 @@ declare module "sap/ui/table/Table" {
6526
7177
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6527
7178
  *
6528
7179
  * Default value is `0`.
7180
+ *
7181
+ * @returns Reference to `this` in order to allow method chaining
6529
7182
  */
6530
7183
  setFixedRowCount(
6531
7184
  /**
@@ -6535,6 +7188,8 @@ declare module "sap/ui/table/Table" {
6535
7188
  ): this;
6536
7189
  /**
6537
7190
  * Sets the aggregated {@link #getFooter footer}.
7191
+ *
7192
+ * @returns Reference to `this` in order to allow method chaining
6538
7193
  */
6539
7194
  setFooter(
6540
7195
  /**
@@ -6546,6 +7201,8 @@ declare module "sap/ui/table/Table" {
6546
7201
  * @EXPERIMENTAL (since 1.28)
6547
7202
  *
6548
7203
  * Sets the associated {@link #getGroupBy groupBy}.
7204
+ *
7205
+ * @returns Reference to `this` in order to allow method chaining
6549
7206
  */
6550
7207
  setGroupBy(
6551
7208
  /**
@@ -6563,6 +7220,8 @@ declare module "sap/ui/table/Table" {
6563
7220
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6564
7221
  *
6565
7222
  * Default value is `5`.
7223
+ *
7224
+ * @returns Reference to `this` in order to allow method chaining
6566
7225
  */
6567
7226
  setMinAutoRowCount(
6568
7227
  /**
@@ -6581,6 +7240,8 @@ declare module "sap/ui/table/Table" {
6581
7240
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6582
7241
  *
6583
7242
  * Default value is `Scrollbar`.
7243
+ *
7244
+ * @returns Reference to `this` in order to allow method chaining
6584
7245
  */
6585
7246
  setNavigationMode(
6586
7247
  /**
@@ -6590,6 +7251,8 @@ declare module "sap/ui/table/Table" {
6590
7251
  ): this;
6591
7252
  /**
6592
7253
  * Sets the aggregated {@link #getNoData noData}.
7254
+ *
7255
+ * @returns Reference to `this` in order to allow method chaining
6593
7256
  */
6594
7257
  setNoData(
6595
7258
  /**
@@ -6608,6 +7271,8 @@ declare module "sap/ui/table/Table" {
6608
7271
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6609
7272
  *
6610
7273
  * Default value is `0`.
7274
+ *
7275
+ * @returns Reference to `this` in order to allow method chaining
6611
7276
  */
6612
7277
  setRowActionCount(
6613
7278
  /**
@@ -6617,6 +7282,8 @@ declare module "sap/ui/table/Table" {
6617
7282
  ): this;
6618
7283
  /**
6619
7284
  * Sets the aggregated {@link #getRowActionTemplate rowActionTemplate}.
7285
+ *
7286
+ * @returns Reference to `this` in order to allow method chaining
6620
7287
  */
6621
7288
  setRowActionTemplate(
6622
7289
  /**
@@ -6642,6 +7309,8 @@ declare module "sap/ui/table/Table" {
6642
7309
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6643
7310
  *
6644
7311
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7312
+ *
7313
+ * @returns Reference to `this` in order to allow method chaining
6645
7314
  */
6646
7315
  setRowHeight(
6647
7316
  /**
@@ -6651,6 +7320,8 @@ declare module "sap/ui/table/Table" {
6651
7320
  ): this;
6652
7321
  /**
6653
7322
  * Sets the aggregated {@link #getRowSettingsTemplate rowSettingsTemplate}.
7323
+ *
7324
+ * @returns Reference to `this` in order to allow method chaining
6654
7325
  */
6655
7326
  setRowSettingsTemplate(
6656
7327
  /**
@@ -6660,6 +7331,8 @@ declare module "sap/ui/table/Table" {
6660
7331
  ): this;
6661
7332
  /**
6662
7333
  * Sets the selected index. The previous selection is removed.
7334
+ *
7335
+ * @returns Reference to `this` in order to allow method chaining
6663
7336
  */
6664
7337
  setSelectedIndex(
6665
7338
  /**
@@ -6678,6 +7351,8 @@ declare module "sap/ui/table/Table" {
6678
7351
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6679
7352
  *
6680
7353
  * Default value is `RowSelector`.
7354
+ *
7355
+ * @returns Reference to `this` in order to allow method chaining
6681
7356
  */
6682
7357
  setSelectionBehavior(
6683
7358
  /**
@@ -6687,6 +7362,8 @@ declare module "sap/ui/table/Table" {
6687
7362
  ): this;
6688
7363
  /**
6689
7364
  * Sets the given selection interval as selection. In case of a single selection, only `iIndexTo` is selected.
7365
+ *
7366
+ * @returns Reference to `this` in order to allow method chaining
6690
7367
  */
6691
7368
  setSelectionInterval(
6692
7369
  /**
@@ -6700,6 +7377,8 @@ declare module "sap/ui/table/Table" {
6700
7377
  ): this;
6701
7378
  /**
6702
7379
  * Sets the selection mode. The current selection is lost.
7380
+ *
7381
+ * @returns Reference to `this` in order to allow method chaining
6703
7382
  */
6704
7383
  setSelectionMode(
6705
7384
  /**
@@ -6716,6 +7395,8 @@ declare module "sap/ui/table/Table" {
6716
7395
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6717
7396
  *
6718
7397
  * Default value is `false`.
7398
+ *
7399
+ * @returns Reference to `this` in order to allow method chaining
6719
7400
  */
6720
7401
  setShowColumnVisibilityMenu(
6721
7402
  /**
@@ -6732,6 +7413,8 @@ declare module "sap/ui/table/Table" {
6732
7413
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6733
7414
  *
6734
7415
  * Default value is `true`.
7416
+ *
7417
+ * @returns Reference to `this` in order to allow method chaining
6735
7418
  */
6736
7419
  setShowNoData(
6737
7420
  /**
@@ -6750,6 +7433,8 @@ declare module "sap/ui/table/Table" {
6750
7433
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6751
7434
  *
6752
7435
  * Default value is `false`.
7436
+ *
7437
+ * @returns Reference to `this` in order to allow method chaining
6753
7438
  */
6754
7439
  setShowOverlay(
6755
7440
  /**
@@ -6760,6 +7445,8 @@ declare module "sap/ui/table/Table" {
6760
7445
  /**
6761
7446
  * Sets the threshold value, which will be added to all data requests in case the Table is bound against
6762
7447
  * an OData service.
7448
+ *
7449
+ * @returns Reference to `this` in order to allow method chaining
6763
7450
  */
6764
7451
  setThreshold(
6765
7452
  /**
@@ -6771,6 +7458,8 @@ declare module "sap/ui/table/Table" {
6771
7458
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
6772
7459
  *
6773
7460
  * Sets the aggregated {@link #getTitle title}.
7461
+ *
7462
+ * @returns Reference to `this` in order to allow method chaining
6774
7463
  */
6775
7464
  setTitle(
6776
7465
  /**
@@ -6782,6 +7471,8 @@ declare module "sap/ui/table/Table" {
6782
7471
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
6783
7472
  *
6784
7473
  * Sets the aggregated {@link #getToolbar toolbar}.
7474
+ *
7475
+ * @returns Reference to `this` in order to allow method chaining
6785
7476
  */
6786
7477
  setToolbar(
6787
7478
  /**
@@ -6797,6 +7488,8 @@ declare module "sap/ui/table/Table" {
6797
7488
  *
6798
7489
  * Please note that tooltips are not rendered for the table. The tooltip property will be set but it won't
6799
7490
  * effect the DOM.
7491
+ *
7492
+ * @returns Reference to `this` in order to allow method chaining
6800
7493
  */
6801
7494
  setTooltip(
6802
7495
  /**
@@ -6812,6 +7505,8 @@ declare module "sap/ui/table/Table" {
6812
7505
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6813
7506
  *
6814
7507
  * Default value is `10`.
7508
+ *
7509
+ * @returns Reference to `this` in order to allow method chaining
6815
7510
  */
6816
7511
  setVisibleRowCount(
6817
7512
  /**
@@ -6843,6 +7538,8 @@ declare module "sap/ui/table/Table" {
6843
7538
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6844
7539
  *
6845
7540
  * Default value is `Fixed`.
7541
+ *
7542
+ * @returns Reference to `this` in order to allow method chaining
6846
7543
  */
6847
7544
  setVisibleRowCountMode(
6848
7545
  /**
@@ -6860,6 +7557,8 @@ declare module "sap/ui/table/Table" {
6860
7557
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6861
7558
  *
6862
7559
  * Default value is `'auto'`.
7560
+ *
7561
+ * @returns Reference to `this` in order to allow method chaining
6863
7562
  */
6864
7563
  setWidth(
6865
7564
  /**
@@ -6886,10 +7585,14 @@ declare module "sap/ui/table/Table" {
6886
7585
  ): void;
6887
7586
  /**
6888
7587
  * Unbinds aggregation {@link #getColumns columns} from model data.
7588
+ *
7589
+ * @returns Reference to `this` in order to allow method chaining
6889
7590
  */
6890
7591
  unbindColumns(): this;
6891
7592
  /**
6892
7593
  * Unbinds aggregation {@link #getRows rows} from model data.
7594
+ *
7595
+ * @returns Reference to `this` in order to allow method chaining
6893
7596
  */
6894
7597
  unbindRows(): this;
6895
7598
  }
@@ -6898,7 +7601,7 @@ declare module "sap/ui/table/Table" {
6898
7601
  /**
6899
7602
  * Width of the Table.
6900
7603
  */
6901
- width?: CSSSize | PropertyBindingInfo;
7604
+ width?: CSSSize | PropertyBindingInfo | `{${string}}`;
6902
7605
 
6903
7606
  /**
6904
7607
  * Row height in pixel.
@@ -6915,7 +7618,7 @@ declare module "sap/ui/table/Table" {
6915
7618
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
6916
7619
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6917
7620
  */
6918
- rowHeight?: int | PropertyBindingInfo;
7621
+ rowHeight?: int | PropertyBindingInfo | `{${string}}`;
6919
7622
 
6920
7623
  /**
6921
7624
  * Header row height in pixel. If a value greater than 0 is set, it overrides the height defined in the
@@ -6926,7 +7629,7 @@ declare module "sap/ui/table/Table" {
6926
7629
  * **Note**: In a {@link sap.ui.table.Column#getMultiLabels MultiLabel} scenario, the height is applied
6927
7630
  * to each individual row of the table's header.
6928
7631
  */
6929
- columnHeaderHeight?: int | PropertyBindingInfo;
7632
+ columnHeaderHeight?: int | PropertyBindingInfo | `{${string}}`;
6930
7633
 
6931
7634
  /**
6932
7635
  * Flag whether the column header is visible or not.
@@ -6934,17 +7637,17 @@ declare module "sap/ui/table/Table" {
6934
7637
  * **Caution:** Please be aware that when setting this property to `false`, a 100% accessibility of the
6935
7638
  * table can't be guaranteed any more.
6936
7639
  */
6937
- columnHeaderVisible?: boolean | PropertyBindingInfo;
7640
+ columnHeaderVisible?: boolean | PropertyBindingInfo | `{${string}}`;
6938
7641
 
6939
7642
  /**
6940
7643
  * Number of visible rows of the table.
6941
7644
  */
6942
- visibleRowCount?: int | PropertyBindingInfo;
7645
+ visibleRowCount?: int | PropertyBindingInfo | `{${string}}`;
6943
7646
 
6944
7647
  /**
6945
7648
  * First visible row.
6946
7649
  */
6947
- firstVisibleRow?: int | PropertyBindingInfo;
7650
+ firstVisibleRow?: int | PropertyBindingInfo | `{${string}}`;
6948
7651
 
6949
7652
  /**
6950
7653
  * Selection mode of the Table. This property controls whether single or multiple rows can be selected and
@@ -6956,7 +7659,8 @@ declare module "sap/ui/table/Table" {
6956
7659
  */
6957
7660
  selectionMode?:
6958
7661
  | (SelectionMode | keyof typeof SelectionMode)
6959
- | PropertyBindingInfo;
7662
+ | PropertyBindingInfo
7663
+ | `{${string}}`;
6960
7664
 
6961
7665
  /**
6962
7666
  * Selection behavior of the Table. This property defines whether the row selector is displayed and whether
@@ -6966,7 +7670,8 @@ declare module "sap/ui/table/Table" {
6966
7670
  */
6967
7671
  selectionBehavior?:
6968
7672
  | (SelectionBehavior | keyof typeof SelectionBehavior)
6969
- | PropertyBindingInfo;
7673
+ | PropertyBindingInfo
7674
+ | `{${string}}`;
6970
7675
 
6971
7676
  /**
6972
7677
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices} and {@link sap.ui.table.Table#setSelectedIndex}
@@ -6977,13 +7682,13 @@ declare module "sap/ui/table/Table" {
6977
7682
  * invalid, the call is ignored. **Note:** If the rows of the table are bound, the value of the property
6978
7683
  * is reset to -1. If a selection plugin is applied to the table, the property is not bindable.
6979
7684
  */
6980
- selectedIndex?: int | PropertyBindingInfo;
7685
+ selectedIndex?: int | PropertyBindingInfo | `{${string}}`;
6981
7686
 
6982
7687
  /**
6983
7688
  * Flag whether the controls of the Table are editable or not (currently this only controls the background
6984
7689
  * color in certain themes!)
6985
7690
  */
6986
- editable?: boolean | PropertyBindingInfo;
7691
+ editable?: boolean | PropertyBindingInfo | `{${string}}`;
6987
7692
 
6988
7693
  /**
6989
7694
  * @deprecated (since 1.38)
@@ -6993,21 +7698,22 @@ declare module "sap/ui/table/Table" {
6993
7698
  */
6994
7699
  navigationMode?:
6995
7700
  | (NavigationMode | keyof typeof NavigationMode)
6996
- | PropertyBindingInfo;
7701
+ | PropertyBindingInfo
7702
+ | `{${string}}`;
6997
7703
 
6998
7704
  /**
6999
- * The `threshold` defines how many additional (not yet visible records) shall be pre-fetched to enable
7000
- * smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount` is
7001
- * 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
7002
- * is lower than the `visibleRowCount`, the `visibleRowCount` will be used as the `threshold`. If the value
7003
- * is 0 then the thresholding is disabled.
7705
+ * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
7706
+ * enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
7707
+ * is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
7708
+ * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
7709
+ * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
7004
7710
  */
7005
- threshold?: int | PropertyBindingInfo;
7711
+ threshold?: int | PropertyBindingInfo | `{${string}}`;
7006
7712
 
7007
7713
  /**
7008
7714
  * Flag to enable or disable column reordering
7009
7715
  */
7010
- enableColumnReordering?: boolean | PropertyBindingInfo;
7716
+ enableColumnReordering?: boolean | PropertyBindingInfo | `{${string}}`;
7011
7717
 
7012
7718
  /**
7013
7719
  * @EXPERIMENTAL (since 1.28)
@@ -7028,19 +7734,19 @@ declare module "sap/ui/table/Table" {
7028
7734
  * - The column, by which the table is grouped, is not visible. It will become visible again only if the
7029
7735
  * table is grouped by another column or grouping is disabled.
7030
7736
  */
7031
- enableGrouping?: boolean | PropertyBindingInfo;
7737
+ enableGrouping?: boolean | PropertyBindingInfo | `{${string}}`;
7032
7738
 
7033
7739
  /**
7034
7740
  * Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
7035
7741
  * header menu. It allows to show or hide columns
7036
7742
  */
7037
- showColumnVisibilityMenu?: boolean | PropertyBindingInfo;
7743
+ showColumnVisibilityMenu?: boolean | PropertyBindingInfo | `{${string}}`;
7038
7744
 
7039
7745
  /**
7040
7746
  * Flag whether to show the no data overlay or not once the table is empty. If set to false the table will
7041
7747
  * just show a grid of empty cells
7042
7748
  */
7043
- showNoData?: boolean | PropertyBindingInfo;
7749
+ showNoData?: boolean | PropertyBindingInfo | `{${string}}`;
7044
7750
 
7045
7751
  /**
7046
7752
  * @SINCE 1.9.2
@@ -7063,13 +7769,14 @@ declare module "sap/ui/table/Table" {
7063
7769
  */
7064
7770
  visibleRowCountMode?:
7065
7771
  | (VisibleRowCountMode | keyof typeof VisibleRowCountMode)
7066
- | PropertyBindingInfo;
7772
+ | PropertyBindingInfo
7773
+ | `{${string}}`;
7067
7774
 
7068
7775
  /**
7069
7776
  * This property is used to set the minimum count of visible rows when the property visibleRowCountMode
7070
7777
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
7071
7778
  */
7072
- minAutoRowCount?: int | PropertyBindingInfo;
7779
+ minAutoRowCount?: int | PropertyBindingInfo | `{${string}}`;
7073
7780
 
7074
7781
  /**
7075
7782
  * Number of columns that are fixed on the left. Only columns which are not fixed can be scrolled horizontally.
@@ -7080,7 +7787,7 @@ declare module "sap/ui/table/Table" {
7080
7787
  * the value of the property and adapts the behavior in an appropriate way to ensure that the user is still
7081
7788
  * able to scroll horizontally.
7082
7789
  */
7083
- fixedColumnCount?: int | PropertyBindingInfo;
7790
+ fixedColumnCount?: int | PropertyBindingInfo | `{${string}}`;
7084
7791
 
7085
7792
  /**
7086
7793
  * Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
@@ -7089,7 +7796,7 @@ declare module "sap/ui/table/Table" {
7089
7796
  * This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel
7090
7797
  * client model}.
7091
7798
  */
7092
- fixedRowCount?: int | PropertyBindingInfo;
7799
+ fixedRowCount?: int | PropertyBindingInfo | `{${string}}`;
7093
7800
 
7094
7801
  /**
7095
7802
  * @SINCE 1.18.7
@@ -7100,21 +7807,21 @@ declare module "sap/ui/table/Table" {
7100
7807
  * This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel
7101
7808
  * client model}.
7102
7809
  */
7103
- fixedBottomRowCount?: int | PropertyBindingInfo;
7810
+ fixedBottomRowCount?: int | PropertyBindingInfo | `{${string}}`;
7104
7811
 
7105
7812
  /**
7106
7813
  * @SINCE 1.21.0
7107
7814
  *
7108
7815
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
7109
7816
  */
7110
- enableColumnFreeze?: boolean | PropertyBindingInfo;
7817
+ enableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
7111
7818
 
7112
7819
  /**
7113
7820
  * @SINCE 1.21.0
7114
7821
  *
7115
7822
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
7116
7823
  */
7117
- enableCellFilter?: boolean | PropertyBindingInfo;
7824
+ enableCellFilter?: boolean | PropertyBindingInfo | `{${string}}`;
7118
7825
 
7119
7826
  /**
7120
7827
  * @SINCE 1.21.2
@@ -7122,7 +7829,7 @@ declare module "sap/ui/table/Table" {
7122
7829
  * Setting this property to true will show an overlay on top of the Table content and users cannot click
7123
7830
  * anymore on the Table content.
7124
7831
  */
7125
- showOverlay?: boolean | PropertyBindingInfo;
7832
+ showOverlay?: boolean | PropertyBindingInfo | `{${string}}`;
7126
7833
 
7127
7834
  /**
7128
7835
  * @SINCE 1.23.0
@@ -7130,7 +7837,7 @@ declare module "sap/ui/table/Table" {
7130
7837
  * Specifies if a select all button should be displayed in the top left corner. This button is only displayed
7131
7838
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
7132
7839
  */
7133
- enableSelectAll?: boolean | PropertyBindingInfo;
7840
+ enableSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
7134
7841
 
7135
7842
  /**
7136
7843
  * @SINCE 1.23.0
@@ -7138,7 +7845,7 @@ declare module "sap/ui/table/Table" {
7138
7845
  * Set this parameter to true to implement your own filter behaviour. Instead of the filter input box a
7139
7846
  * button will be rendered for which' press event (customFilter) you can register an event handler.
7140
7847
  */
7141
- enableCustomFilter?: boolean | PropertyBindingInfo;
7848
+ enableCustomFilter?: boolean | PropertyBindingInfo | `{${string}}`;
7142
7849
 
7143
7850
  /**
7144
7851
  * @SINCE 1.27.0
@@ -7149,7 +7856,7 @@ declare module "sap/ui/table/Table" {
7149
7856
  * the table switches back to not busy. The busy state of the table can still be set manually by calling
7150
7857
  * {@link sap.ui.core.Control#setBusy}.
7151
7858
  */
7152
- enableBusyIndicator?: boolean | PropertyBindingInfo;
7859
+ enableBusyIndicator?: boolean | PropertyBindingInfo | `{${string}}`;
7153
7860
 
7154
7861
  /**
7155
7862
  * @SINCE 1.45.0
@@ -7157,14 +7864,14 @@ declare module "sap/ui/table/Table" {
7157
7864
  * Number of row actions made visible which determines the width of the row action column. The values `0`,
7158
7865
  * `1` and `2` are possible.
7159
7866
  */
7160
- rowActionCount?: int | PropertyBindingInfo;
7867
+ rowActionCount?: int | PropertyBindingInfo | `{${string}}`;
7161
7868
 
7162
7869
  /**
7163
7870
  * @SINCE 1.52
7164
7871
  *
7165
7872
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
7166
7873
  */
7167
- alternateRowColors?: boolean | PropertyBindingInfo;
7874
+ alternateRowColors?: boolean | PropertyBindingInfo | `{${string}}`;
7168
7875
 
7169
7876
  /**
7170
7877
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
@@ -7190,12 +7897,12 @@ declare module "sap/ui/table/Table" {
7190
7897
  * Extension section of the Table. If not set, no extension area will be rendered. Note: In case a `sap.m.Toolbar`
7191
7898
  * is used as header the CSS class sapMTBHeader-CTX should be applied on this toolbar.
7192
7899
  */
7193
- extension?: Control[] | Control | AggregationBindingInfo;
7900
+ extension?: Control[] | Control | AggregationBindingInfo | `{${string}}`;
7194
7901
 
7195
7902
  /**
7196
7903
  * Columns of the Table
7197
7904
  */
7198
- columns?: Column[] | Column | AggregationBindingInfo;
7905
+ columns?: Column[] | Column | AggregationBindingInfo | `{${string}}`;
7199
7906
 
7200
7907
  /**
7201
7908
  * This aggregation is managed by the table itself. It can only be used with data binding, is read-only,
@@ -7213,7 +7920,7 @@ declare module "sap/ui/table/Table" {
7213
7920
  * of the table. Furthermore, row-specific settings can be defined with the {@link sap.ui.table.Table#setRowSettingsTemplate
7214
7921
  * rowSettingsTemplate} aggregation of the table.
7215
7922
  */
7216
- rows?: Row[] | Row | AggregationBindingInfo;
7923
+ rows?: Row[] | Row | AggregationBindingInfo | `{${string}}`;
7217
7924
 
7218
7925
  /**
7219
7926
  * The value for the noData aggregation can be either a string value or a control instance. The control
@@ -7260,7 +7967,11 @@ declare module "sap/ui/table/Table" {
7260
7967
  * use the API of the plugin.
7261
7968
  * - Only one MultiSelectionPlugin can be applied. No other plugins can be applied.
7262
7969
  */
7263
- plugins?: SelectionPlugin[] | SelectionPlugin | AggregationBindingInfo;
7970
+ plugins?:
7971
+ | SelectionPlugin[]
7972
+ | SelectionPlugin
7973
+ | AggregationBindingInfo
7974
+ | `{${string}}`;
7264
7975
 
7265
7976
  /**
7266
7977
  * @EXPERIMENTAL (since 1.28)
@@ -7448,6 +8159,8 @@ declare module "sap/ui/table/TablePersoController" {
7448
8159
  * it with the information contained in `oClassInfo`.
7449
8160
  *
7450
8161
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
8162
+ *
8163
+ * @returns Created class / constructor function
7451
8164
  */
7452
8165
  static extend<T extends Record<string, unknown>>(
7453
8166
  /**
@@ -7466,6 +8179,8 @@ declare module "sap/ui/table/TablePersoController" {
7466
8179
  ): Function;
7467
8180
  /**
7468
8181
  * Returns a metadata object for class sap.ui.table.TablePersoController.
8182
+ *
8183
+ * @returns Metadata object describing this class
7469
8184
  */
7470
8185
  static getMetadata(): ManagedObjectMetadata;
7471
8186
  /**
@@ -7474,6 +8189,8 @@ declare module "sap/ui/table/TablePersoController" {
7474
8189
  * Auto save state
7475
8190
  *
7476
8191
  * Default value is `true`.
8192
+ *
8193
+ * @returns Value of property `autoSave`
7477
8194
  */
7478
8195
  getAutoSave(): boolean;
7479
8196
  /**
@@ -7484,6 +8201,8 @@ declare module "sap/ui/table/TablePersoController" {
7484
8201
  * Table and the Column. Basically this will be more stable than using the auto IDs.
7485
8202
  *
7486
8203
  * Default value is `"persoKey"`.
8204
+ *
8205
+ * @returns Value of property `customDataKey`
7487
8206
  */
7488
8207
  getCustomDataKey(): string;
7489
8208
  /**
@@ -7493,6 +8212,8 @@ declare module "sap/ui/table/TablePersoController" {
7493
8212
  * - getPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7494
8213
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
7495
8214
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
8215
+ *
8216
+ * @returns Value of property `persoService`
7496
8217
  */
7497
8218
  getPersoService(): any;
7498
8219
  /**
@@ -7508,6 +8229,8 @@ declare module "sap/ui/table/TablePersoController" {
7508
8229
  *
7509
8230
  *
7510
8231
  * Default value is `Default`.
8232
+ *
8233
+ * @returns Value of property `resetAllMode`
7511
8234
  */
7512
8235
  getResetAllMode(): ResetAllMode | keyof typeof ResetAllMode;
7513
8236
  /**
@@ -7517,6 +8240,8 @@ declare module "sap/ui/table/TablePersoController" {
7517
8240
  *
7518
8241
  *
7519
8242
  * Default value is `true`.
8243
+ *
8244
+ * @returns Value of property `showResetAll`
7520
8245
  */
7521
8246
  getShowResetAll(): boolean;
7522
8247
  /**
@@ -7534,10 +8259,14 @@ declare module "sap/ui/table/TablePersoController" {
7534
8259
  openDialog(mSettings: object): void;
7535
8260
  /**
7536
8261
  * Refresh the personalizations (reloads data from service).
8262
+ *
8263
+ * @returns `jQuery Promise` which is resolved once the refresh is finished
7537
8264
  */
7538
8265
  refresh(): jQuery.Promise;
7539
8266
  /**
7540
8267
  * Saves the current personalization state.
8268
+ *
8269
+ * @returns `jQuery Promise` which is resolved once the save is finished
7541
8270
  */
7542
8271
  savePersonalizations(): jQuery.Promise;
7543
8272
  /**
@@ -7548,6 +8277,8 @@ declare module "sap/ui/table/TablePersoController" {
7548
8277
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7549
8278
  *
7550
8279
  * Default value is `true`.
8280
+ *
8281
+ * @returns Reference to `this` in order to allow method chaining
7551
8282
  */
7552
8283
  setAutoSave(
7553
8284
  /**
@@ -7565,6 +8296,8 @@ declare module "sap/ui/table/TablePersoController" {
7565
8296
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7566
8297
  *
7567
8298
  * Default value is `"persoKey"`.
8299
+ *
8300
+ * @returns Reference to `this` in order to allow method chaining
7568
8301
  */
7569
8302
  setCustomDataKey(
7570
8303
  /**
@@ -7581,6 +8314,8 @@ declare module "sap/ui/table/TablePersoController" {
7581
8314
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7582
8315
  *
7583
8316
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8317
+ *
8318
+ * @returns Reference to `this` in order to allow method chaining
7584
8319
  */
7585
8320
  setPersoService(
7586
8321
  /**
@@ -7603,6 +8338,8 @@ declare module "sap/ui/table/TablePersoController" {
7603
8338
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7604
8339
  *
7605
8340
  * Default value is `Default`.
8341
+ *
8342
+ * @returns Reference to `this` in order to allow method chaining
7606
8343
  */
7607
8344
  setResetAllMode(
7608
8345
  /**
@@ -7619,6 +8356,8 @@ declare module "sap/ui/table/TablePersoController" {
7619
8356
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7620
8357
  *
7621
8358
  * Default value is `true`.
8359
+ *
8360
+ * @returns Reference to `this` in order to allow method chaining
7622
8361
  */
7623
8362
  setShowResetAll(
7624
8363
  /**
@@ -7628,6 +8367,8 @@ declare module "sap/ui/table/TablePersoController" {
7628
8367
  ): this;
7629
8368
  /**
7630
8369
  * Sets the associated {@link #getTable table}.
8370
+ *
8371
+ * @returns Reference to `this` in order to allow method chaining
7631
8372
  */
7632
8373
  setTable(
7633
8374
  /**
@@ -7643,7 +8384,7 @@ declare module "sap/ui/table/TablePersoController" {
7643
8384
  /**
7644
8385
  * Auto save state
7645
8386
  */
7646
- autoSave?: boolean | PropertyBindingInfo;
8387
+ autoSave?: boolean | PropertyBindingInfo | `{${string}}`;
7647
8388
 
7648
8389
  /**
7649
8390
  * Personalization Service object. Needs to have the following methods:
@@ -7651,7 +8392,7 @@ declare module "sap/ui/table/TablePersoController" {
7651
8392
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
7652
8393
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7653
8394
  */
7654
- persoService?: any | PropertyBindingInfo;
8395
+ persoService?: any | PropertyBindingInfo | `{${string}}`;
7655
8396
 
7656
8397
  /**
7657
8398
  * By defining a custom data key the `TablePersoController` will try to get the key for saving the perso
@@ -7663,7 +8404,7 @@ declare module "sap/ui/table/TablePersoController" {
7663
8404
  /**
7664
8405
  * Controls the visibility of the Reset button of the `TablePersoDialog`.
7665
8406
  */
7666
- showResetAll?: boolean | PropertyBindingInfo;
8407
+ showResetAll?: boolean | PropertyBindingInfo | `{${string}}`;
7667
8408
 
7668
8409
  /**
7669
8410
  * Controls the behavior of the Reset button of the `TablePersoDialog`.
@@ -7676,7 +8417,8 @@ declare module "sap/ui/table/TablePersoController" {
7676
8417
  */
7677
8418
  resetAllMode?:
7678
8419
  | (ResetAllMode | keyof typeof ResetAllMode)
7679
- | PropertyBindingInfo;
8420
+ | PropertyBindingInfo
8421
+ | `{${string}}`;
7680
8422
 
7681
8423
  /**
7682
8424
  * The target table of this controller.
@@ -7746,6 +8488,8 @@ declare module "sap/ui/table/TreeTable" {
7746
8488
  * information contained in `oClassInfo`.
7747
8489
  *
7748
8490
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Table.extend}.
8491
+ *
8492
+ * @returns Created class / constructor function
7749
8493
  */
7750
8494
  static extend<T extends Record<string, unknown>>(
7751
8495
  /**
@@ -7764,6 +8508,8 @@ declare module "sap/ui/table/TreeTable" {
7764
8508
  ): Function;
7765
8509
  /**
7766
8510
  * Returns a metadata object for class sap.ui.table.TreeTable.
8511
+ *
8512
+ * @returns Metadata object describing this class
7767
8513
  */
7768
8514
  static getMetadata(): ElementMetadata;
7769
8515
  /**
@@ -7772,6 +8518,8 @@ declare module "sap/ui/table/TreeTable" {
7772
8518
  *
7773
8519
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
7774
8520
  * To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
8521
+ *
8522
+ * @returns Reference to `this` in order to allow method chaining
7775
8523
  */
7776
8524
  addSelectionInterval(
7777
8525
  /**
@@ -7791,6 +8539,8 @@ declare module "sap/ui/table/TreeTable" {
7791
8539
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7792
8540
  *
7793
8541
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
8542
+ *
8543
+ * @returns Reference to `this` in order to allow method chaining
7794
8544
  */
7795
8545
  attachToggleOpenState(
7796
8546
  /**
@@ -7815,6 +8565,8 @@ declare module "sap/ui/table/TreeTable" {
7815
8565
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7816
8566
  *
7817
8567
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
8568
+ *
8569
+ * @returns Reference to `this` in order to allow method chaining
7818
8570
  */
7819
8571
  attachToggleOpenState(
7820
8572
  /**
@@ -7828,6 +8580,8 @@ declare module "sap/ui/table/TreeTable" {
7828
8580
  ): this;
7829
8581
  /**
7830
8582
  * Collapses one or more rows.
8583
+ *
8584
+ * @returns `this` to allow method chaining
7831
8585
  */
7832
8586
  collapse(
7833
8587
  /**
@@ -7837,6 +8591,8 @@ declare module "sap/ui/table/TreeTable" {
7837
8591
  ): this;
7838
8592
  /**
7839
8593
  * Collapses all nodes (and lower if collapseRecursive is activated)
8594
+ *
8595
+ * @returns `this` to allow method chaining
7840
8596
  */
7841
8597
  collapseAll(): this;
7842
8598
  /**
@@ -7844,6 +8600,8 @@ declare module "sap/ui/table/TreeTable" {
7844
8600
  * this `sap.ui.table.TreeTable`.
7845
8601
  *
7846
8602
  * The passed function and listener object must match the ones used for event registration.
8603
+ *
8604
+ * @returns Reference to `this` in order to allow method chaining
7847
8605
  */
7848
8606
  detachToggleOpenState(
7849
8607
  /**
@@ -7857,6 +8615,8 @@ declare module "sap/ui/table/TreeTable" {
7857
8615
  ): this;
7858
8616
  /**
7859
8617
  * Expands one or more rows.
8618
+ *
8619
+ * @returns `this` to allow method chaining
7860
8620
  */
7861
8621
  expand(
7862
8622
  /**
@@ -7867,10 +8627,12 @@ declare module "sap/ui/table/TreeTable" {
7867
8627
  /**
7868
8628
  * Expands all nodes starting from the root level to the given level 'iLevel'.
7869
8629
  *
7870
- * Only supported with ODataModel v2, when running in OperationMode.Client or OperationMode.Auto. Fully
7871
- * supported for `sap.ui.model.ClientTreeBinding`, e.g. if you are using a `sap.ui.model.json.JSONModel`.
8630
+ * Only supported with ODataModel v2, when running in OperationMode.Client. Fully supported for `sap.ui.model.ClientTreeBinding`,
8631
+ * e.g. if you are using a `sap.ui.model.json.JSONModel`.
7872
8632
  *
7873
8633
  * Please also see `sap.ui.model.odata.OperationMode`.
8634
+ *
8635
+ * @returns a reference on the TreeTable control, can be used for chaining
7874
8636
  */
7875
8637
  expandToLevel(
7876
8638
  /**
@@ -7880,6 +8642,8 @@ declare module "sap/ui/table/TreeTable" {
7880
8642
  ): this;
7881
8643
  /**
7882
8644
  * Fires event {@link #event:toggleOpenState toggleOpenState} to attached listeners.
8645
+ *
8646
+ * @returns Reference to `this` in order to allow method chaining
7883
8647
  */
7884
8648
  fireToggleOpenState(
7885
8649
  /**
@@ -7924,6 +8688,8 @@ declare module "sap/ui/table/TreeTable" {
7924
8688
  *
7925
8689
  *
7926
8690
  * Default value is `true`.
8691
+ *
8692
+ * @returns Value of property `collapseRecursive`
7927
8693
  */
7928
8694
  getCollapseRecursive(): boolean;
7929
8695
  /**
@@ -7956,6 +8722,8 @@ declare module "sap/ui/table/TreeTable" {
7956
8722
  *
7957
8723
  *
7958
8724
  * Default value is `false`.
8725
+ *
8726
+ * @returns Value of property `expandFirstLevel`
7959
8727
  */
7960
8728
  getExpandFirstLevel(): boolean;
7961
8729
  /**
@@ -7968,6 +8736,8 @@ declare module "sap/ui/table/TreeTable" {
7968
8736
  * Gets current value of property {@link #getGroupHeaderProperty groupHeaderProperty}.
7969
8737
  *
7970
8738
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
8739
+ *
8740
+ * @returns Value of property `groupHeaderProperty`
7971
8741
  */
7972
8742
  getGroupHeaderProperty(): string;
7973
8743
  /**
@@ -7993,6 +8763,8 @@ declare module "sap/ui/table/TreeTable" {
7993
8763
  *
7994
8764
  *
7995
8765
  * Default value is `0`.
8766
+ *
8767
+ * @returns Value of property `rootLevel`
7996
8768
  */
7997
8769
  getRootLevel(): int;
7998
8770
  /**
@@ -8001,6 +8773,8 @@ declare module "sap/ui/table/TreeTable" {
8001
8773
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
8002
8774
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
8003
8775
  * yet loaded" to the client), will not be returned.
8776
+ *
8777
+ * @returns an array containing all selected indices
8004
8778
  */
8005
8779
  getSelectedIndices(): int[];
8006
8780
  /**
@@ -8010,10 +8784,14 @@ declare module "sap/ui/table/TreeTable" {
8010
8784
  * used to do the grouping for an OData service on the backend and visualize this in a table.
8011
8785
  *
8012
8786
  * Default value is `false`.
8787
+ *
8788
+ * @returns Value of property `useGroupMode`
8013
8789
  */
8014
8790
  getUseGroupMode(): boolean;
8015
8791
  /**
8016
8792
  * Checks whether the row is expanded or collapsed.
8793
+ *
8794
+ * @returns `true` if the row is expanded, `false` if it is collapsed
8017
8795
  */
8018
8796
  isExpanded(
8019
8797
  /**
@@ -8024,6 +8802,8 @@ declare module "sap/ui/table/TreeTable" {
8024
8802
  /**
8025
8803
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
8026
8804
  * is removed from the selection. Invisible nodes (collapsed child nodes) will not be regarded.
8805
+ *
8806
+ * @returns Reference to `this` in order to allow method chaining
8027
8807
  */
8028
8808
  removeSelectionInterval(
8029
8809
  /**
@@ -8042,6 +8822,8 @@ declare module "sap/ui/table/TreeTable" {
8042
8822
  * tree are selected. Additional rows or tree nodes that come into view through scrolling or paging are
8043
8823
  * also selected immediately as soon as they get visible. However, `SelectAll` does not retrieve any data
8044
8824
  * from the back end in order to improve performance and reduce the network traffic.
8825
+ *
8826
+ * @returns a reference on the TreeTable control, can be used for chaining
8045
8827
  */
8046
8828
  selectAll(): this;
8047
8829
  /**
@@ -8070,6 +8852,8 @@ declare module "sap/ui/table/TreeTable" {
8070
8852
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8071
8853
  *
8072
8854
  * Default value is `true`.
8855
+ *
8856
+ * @returns Reference to `this` in order to allow method chaining
8073
8857
  */
8074
8858
  setCollapseRecursive(
8075
8859
  /**
@@ -8083,6 +8867,8 @@ declare module "sap/ui/table/TreeTable" {
8083
8867
  * The property `enableGrouping` is not supported by the `TreeTable` control.
8084
8868
  * See:
8085
8869
  * sap.ui.table.TreeTable#setUseGroupMode
8870
+ *
8871
+ * @returns Reference to `this` in order to allow method chaining
8086
8872
  */
8087
8873
  setEnableGrouping(bValue: boolean): this;
8088
8874
  /**
@@ -8111,6 +8897,8 @@ declare module "sap/ui/table/TreeTable" {
8111
8897
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8112
8898
  *
8113
8899
  * Default value is `false`.
8900
+ *
8901
+ * @returns Reference to `this` in order to allow method chaining
8114
8902
  */
8115
8903
  setExpandFirstLevel(
8116
8904
  /**
@@ -8124,6 +8912,8 @@ declare module "sap/ui/table/TreeTable" {
8124
8912
  * **This property is not supportd for the TreeTable and will be ignored!**
8125
8913
  *
8126
8914
  * Default value is `0`
8915
+ *
8916
+ * @returns `this` to allow method chaining
8127
8917
  */
8128
8918
  setFixedRowCount(
8129
8919
  /**
@@ -8135,6 +8925,8 @@ declare module "sap/ui/table/TreeTable" {
8135
8925
  * @deprecated (since 1.28)
8136
8926
  *
8137
8927
  * The `groupBy` association is not supported by the `TreeTable` control.
8928
+ *
8929
+ * @returns Reference to `this` in order to allow method chaining
8138
8930
  */
8139
8931
  setGroupBy(oColumn: Column | ID): this;
8140
8932
  /**
@@ -8143,6 +8935,8 @@ declare module "sap/ui/table/TreeTable" {
8143
8935
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
8144
8936
  *
8145
8937
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8938
+ *
8939
+ * @returns Reference to `this` in order to allow method chaining
8146
8940
  */
8147
8941
  setGroupHeaderProperty(
8148
8942
  /**
@@ -8175,6 +8969,8 @@ declare module "sap/ui/table/TreeTable" {
8175
8969
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8176
8970
  *
8177
8971
  * Default value is `0`.
8972
+ *
8973
+ * @returns Reference to `this` in order to allow method chaining
8178
8974
  */
8179
8975
  setRootLevel(
8180
8976
  /**
@@ -8186,6 +8982,8 @@ declare module "sap/ui/table/TreeTable" {
8186
8982
  * Sets the selected index In a TreeTable you can only select indices, which correspond to the currently
8187
8983
  * visualized tree. Invisible tree nodes (e.g. collapsed child nodes) can not be selected via Index, because
8188
8984
  * they do not correspond to a TreeTable row.
8985
+ *
8986
+ * @returns a reference on the TreeTable control, can be used for chaining
8189
8987
  */
8190
8988
  setSelectedIndex(
8191
8989
  /**
@@ -8197,6 +8995,8 @@ declare module "sap/ui/table/TreeTable" {
8197
8995
  * Sets the selection of the TreeTable to the given range (including boundaries). Beware: The previous selection
8198
8996
  * will be lost/overridden. If this is not wanted, please use "addSelectionInterval" and "removeSelectionInterval".
8199
8997
  * Please be aware, that the absolute row index only applies to the tree which is visualized by the TreeTable.
8998
+ *
8999
+ * @returns a reference on the TreeTable control, can be used for chaining
8200
9000
  */
8201
9001
  setSelectionInterval(
8202
9002
  /**
@@ -8218,6 +9018,8 @@ declare module "sap/ui/table/TreeTable" {
8218
9018
  * **Note:** In flat mode the user of the table cannot expand or collapse certain nodes and the hierarchy
8219
9019
  * is not visible to the user. The caller of this function has to ensure to use this option only with non-hierarchical
8220
9020
  * data.
9021
+ *
9022
+ * @returns Reference to `this` in order to allow method chaining
8221
9023
  */
8222
9024
  setUseFlatMode(
8223
9025
  /**
@@ -8234,6 +9036,8 @@ declare module "sap/ui/table/TreeTable" {
8234
9036
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8235
9037
  *
8236
9038
  * Default value is `false`.
9039
+ *
9040
+ * @returns Reference to `this` in order to allow method chaining
8237
9041
  */
8238
9042
  setUseGroupMode(
8239
9043
  /**
@@ -8264,13 +9068,13 @@ declare module "sap/ui/table/TreeTable" {
8264
9068
  * });
8265
9069
  * ```
8266
9070
  */
8267
- expandFirstLevel?: boolean | PropertyBindingInfo;
9071
+ expandFirstLevel?: boolean | PropertyBindingInfo | `{${string}}`;
8268
9072
 
8269
9073
  /**
8270
9074
  * If group mode is enabled nodes with subitems are rendered as if they were group headers. This can be
8271
9075
  * used to do the grouping for an OData service on the backend and visualize this in a table.
8272
9076
  */
8273
- useGroupMode?: boolean | PropertyBindingInfo;
9077
+ useGroupMode?: boolean | PropertyBindingInfo | `{${string}}`;
8274
9078
 
8275
9079
  /**
8276
9080
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
@@ -8297,7 +9101,7 @@ declare module "sap/ui/table/TreeTable" {
8297
9101
  * });
8298
9102
  * ```
8299
9103
  */
8300
- collapseRecursive?: boolean | PropertyBindingInfo;
9104
+ collapseRecursive?: boolean | PropertyBindingInfo | `{${string}}`;
8301
9105
 
8302
9106
  /**
8303
9107
  * @deprecated (since 1.76) - replaced by the `rootLevel` binding parameter
@@ -8318,7 +9122,7 @@ declare module "sap/ui/table/TreeTable" {
8318
9122
  * });
8319
9123
  * ```
8320
9124
  */
8321
- rootLevel?: int | PropertyBindingInfo;
9125
+ rootLevel?: int | PropertyBindingInfo | `{${string}}`;
8322
9126
 
8323
9127
  /**
8324
9128
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.