@openui5/types 1.115.0 → 1.115.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/types/sap.f.d.ts +860 -754
- package/types/sap.m.d.ts +8300 -6415
- package/types/sap.tnt.d.ts +81 -74
- package/types/sap.ui.codeeditor.d.ts +40 -25
- package/types/sap.ui.commons.d.ts +991 -672
- package/types/sap.ui.core.d.ts +2853 -2263
- package/types/sap.ui.dt.d.ts +1 -1
- package/types/sap.ui.fl.d.ts +85 -47
- package/types/sap.ui.integration.d.ts +355 -280
- package/types/sap.ui.layout.d.ts +399 -416
- package/types/sap.ui.mdc.d.ts +1016 -792
- package/types/sap.ui.rta.d.ts +7 -7
- package/types/sap.ui.suite.d.ts +25 -11
- package/types/sap.ui.support.d.ts +12 -13
- package/types/sap.ui.table.d.ts +498 -354
- package/types/sap.ui.testrecorder.d.ts +1 -1
- package/types/sap.ui.unified.d.ts +1228 -894
- package/types/sap.ui.ux3.d.ts +1023 -613
- package/types/sap.ui.webc.common.d.ts +7 -9
- package/types/sap.ui.webc.fiori.d.ts +578 -408
- package/types/sap.ui.webc.main.d.ts +1521 -878
- package/types/sap.uxap.d.ts +304 -267
package/types/sap.ui.table.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// For Library Version: 1.115.
|
|
1
|
+
// For Library Version: 1.115.1
|
|
2
2
|
|
|
3
3
|
declare module "sap/ui/table/library" {
|
|
4
4
|
import TreeAutoExpandMode1 from "sap/ui/model/TreeAutoExpandMode";
|
|
@@ -194,7 +194,7 @@ declare module "sap/ui/table/AnalyticalColumn" {
|
|
|
194
194
|
* This column adds additional properties to the table column which are needed for the analytical binding
|
|
195
195
|
* and table
|
|
196
196
|
*/
|
|
197
|
-
class AnalyticalColumn extends Column {
|
|
197
|
+
export default class AnalyticalColumn extends Column {
|
|
198
198
|
/**
|
|
199
199
|
* Constructor for a new AnalyticalColumn.
|
|
200
200
|
*
|
|
@@ -389,7 +389,6 @@ declare module "sap/ui/table/AnalyticalColumn" {
|
|
|
389
389
|
bSummed?: boolean
|
|
390
390
|
): this;
|
|
391
391
|
}
|
|
392
|
-
export default AnalyticalColumn;
|
|
393
392
|
|
|
394
393
|
export interface $AnalyticalColumnSettings extends $ColumnSettings {
|
|
395
394
|
/**
|
|
@@ -431,11 +430,11 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
|
|
|
431
430
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
432
431
|
|
|
433
432
|
/**
|
|
434
|
-
* @
|
|
433
|
+
* @experimental (since 1.21) - The AnalyticalColumnMenu will be productized soon.
|
|
435
434
|
*
|
|
436
435
|
* A column menu which is used by the analytical column
|
|
437
436
|
*/
|
|
438
|
-
class AnalyticalColumnMenu extends ColumnMenu {
|
|
437
|
+
export default class AnalyticalColumnMenu extends ColumnMenu {
|
|
439
438
|
/**
|
|
440
439
|
* Constructor for a new AnalyticalColumnMenu.
|
|
441
440
|
*
|
|
@@ -503,7 +502,6 @@ declare module "sap/ui/table/AnalyticalColumnMenu" {
|
|
|
503
502
|
*/
|
|
504
503
|
static getMetadata(): ElementMetadata;
|
|
505
504
|
}
|
|
506
|
-
export default AnalyticalColumnMenu;
|
|
507
505
|
|
|
508
506
|
export interface $AnalyticalColumnMenuSettings extends $ColumnMenuSettings {}
|
|
509
507
|
}
|
|
@@ -526,7 +524,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
526
524
|
* and correctly annotated OData services. Please check on the SAP Annotations for OData Version 2.0 documentation
|
|
527
525
|
* for further details.
|
|
528
526
|
*/
|
|
529
|
-
class AnalyticalTable extends Table {
|
|
527
|
+
export default class AnalyticalTable extends Table {
|
|
530
528
|
/**
|
|
531
529
|
* Constructor for a new AnalyticalTable.
|
|
532
530
|
*
|
|
@@ -645,7 +643,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
645
643
|
vRowIndex: int | int[]
|
|
646
644
|
): this;
|
|
647
645
|
/**
|
|
648
|
-
* @
|
|
646
|
+
* @since 1.70
|
|
649
647
|
*
|
|
650
648
|
* Expands all nodes. The current selection is removed, and the table scrolls back to the top. If this method
|
|
651
649
|
* is called, not all groups might be loaded. If the user then scrolls to the bottom of the table, additional
|
|
@@ -876,7 +874,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
876
874
|
iToIndex: int
|
|
877
875
|
): this;
|
|
878
876
|
/**
|
|
879
|
-
* @
|
|
877
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
880
878
|
*
|
|
881
879
|
* This function is used by some composite controls to force updating the AnalyticalInfo
|
|
882
880
|
*/
|
|
@@ -1124,7 +1122,7 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1124
1122
|
bSumOnTop?: boolean
|
|
1125
1123
|
): this;
|
|
1126
1124
|
/**
|
|
1127
|
-
* @
|
|
1125
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1128
1126
|
*
|
|
1129
1127
|
* This function is used by some composite controls to avoid updating the AnalyticalInfo when several column
|
|
1130
1128
|
* are added to the table. In order to finally update the AnalyticalInfo and request data, resumeUpdateAnalyticalInfo
|
|
@@ -1132,7 +1130,6 @@ declare module "sap/ui/table/AnalyticalTable" {
|
|
|
1132
1130
|
*/
|
|
1133
1131
|
suspendUpdateAnalyticalInfo(): void;
|
|
1134
1132
|
}
|
|
1135
|
-
export default AnalyticalTable;
|
|
1136
1133
|
|
|
1137
1134
|
export interface $AnalyticalTableSettings extends $TableSettings {
|
|
1138
1135
|
/**
|
|
@@ -1245,8 +1242,6 @@ declare module "sap/ui/table/Column" {
|
|
|
1245
1242
|
|
|
1246
1243
|
import Control from "sap/ui/core/Control";
|
|
1247
1244
|
|
|
1248
|
-
import Event from "sap/ui/base/Event";
|
|
1249
|
-
|
|
1250
1245
|
import {
|
|
1251
1246
|
HorizontalAlign,
|
|
1252
1247
|
ID,
|
|
@@ -1265,10 +1260,12 @@ declare module "sap/ui/table/Column" {
|
|
|
1265
1260
|
AggregationBindingInfo,
|
|
1266
1261
|
} from "sap/ui/base/ManagedObject";
|
|
1267
1262
|
|
|
1263
|
+
import Event from "sap/ui/base/Event";
|
|
1264
|
+
|
|
1268
1265
|
/**
|
|
1269
1266
|
* The column allows you to define column specific properties that will be applied when rendering the table.
|
|
1270
1267
|
*/
|
|
1271
|
-
class Column extends UI5Element {
|
|
1268
|
+
export default class Column extends UI5Element {
|
|
1272
1269
|
/**
|
|
1273
1270
|
* Constructor for a new Column.
|
|
1274
1271
|
*
|
|
@@ -1330,7 +1327,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1330
1327
|
*/
|
|
1331
1328
|
static getMetadata(): ElementMetadata;
|
|
1332
1329
|
/**
|
|
1333
|
-
* @
|
|
1330
|
+
* @since 1.13.1
|
|
1334
1331
|
*
|
|
1335
1332
|
* Adds some multiLabel to the aggregation {@link #getMultiLabels multiLabels}.
|
|
1336
1333
|
*
|
|
@@ -1343,7 +1340,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1343
1340
|
oMultiLabel: Control
|
|
1344
1341
|
): this;
|
|
1345
1342
|
/**
|
|
1346
|
-
* @
|
|
1343
|
+
* @since 1.33.0
|
|
1347
1344
|
*
|
|
1348
1345
|
* Attaches event handler `fnFunction` to the {@link #event:columnMenuOpen columnMenuOpen} event of this
|
|
1349
1346
|
* `sap.ui.table.Column`.
|
|
@@ -1364,14 +1361,14 @@ declare module "sap/ui/table/Column" {
|
|
|
1364
1361
|
/**
|
|
1365
1362
|
* The function to be called when the event occurs
|
|
1366
1363
|
*/
|
|
1367
|
-
fnFunction: (p1:
|
|
1364
|
+
fnFunction: (p1: Column$ColumnMenuOpenEvent) => void,
|
|
1368
1365
|
/**
|
|
1369
1366
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Column` itself
|
|
1370
1367
|
*/
|
|
1371
1368
|
oListener?: object
|
|
1372
1369
|
): this;
|
|
1373
1370
|
/**
|
|
1374
|
-
* @
|
|
1371
|
+
* @since 1.33.0
|
|
1375
1372
|
*
|
|
1376
1373
|
* Attaches event handler `fnFunction` to the {@link #event:columnMenuOpen columnMenuOpen} event of this
|
|
1377
1374
|
* `sap.ui.table.Column`.
|
|
@@ -1387,7 +1384,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1387
1384
|
/**
|
|
1388
1385
|
* The function to be called when the event occurs
|
|
1389
1386
|
*/
|
|
1390
|
-
fnFunction: (p1:
|
|
1387
|
+
fnFunction: (p1: Column$ColumnMenuOpenEvent) => void,
|
|
1391
1388
|
/**
|
|
1392
1389
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Column` itself
|
|
1393
1390
|
*/
|
|
@@ -1406,7 +1403,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1406
1403
|
*/
|
|
1407
1404
|
destroyMenu(): this;
|
|
1408
1405
|
/**
|
|
1409
|
-
* @
|
|
1406
|
+
* @since 1.13.1
|
|
1410
1407
|
*
|
|
1411
1408
|
* Destroys all the multiLabels in the aggregation {@link #getMultiLabels multiLabels}.
|
|
1412
1409
|
*
|
|
@@ -1420,7 +1417,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1420
1417
|
*/
|
|
1421
1418
|
destroyTemplate(): this;
|
|
1422
1419
|
/**
|
|
1423
|
-
* @
|
|
1420
|
+
* @since 1.33.0
|
|
1424
1421
|
*
|
|
1425
1422
|
* Detaches event handler `fnFunction` from the {@link #event:columnMenuOpen columnMenuOpen} event of this
|
|
1426
1423
|
* `sap.ui.table.Column`.
|
|
@@ -1433,15 +1430,15 @@ declare module "sap/ui/table/Column" {
|
|
|
1433
1430
|
/**
|
|
1434
1431
|
* The function to be called, when the event occurs
|
|
1435
1432
|
*/
|
|
1436
|
-
fnFunction: (p1:
|
|
1433
|
+
fnFunction: (p1: Column$ColumnMenuOpenEvent) => void,
|
|
1437
1434
|
/**
|
|
1438
1435
|
* Context object on which the given function had to be called
|
|
1439
1436
|
*/
|
|
1440
1437
|
oListener?: object
|
|
1441
1438
|
): this;
|
|
1442
1439
|
/**
|
|
1443
|
-
* @
|
|
1444
|
-
* @
|
|
1440
|
+
* @since 1.33.0
|
|
1441
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1445
1442
|
*
|
|
1446
1443
|
* Fires event {@link #event:columnMenuOpen columnMenuOpen} to attached listeners.
|
|
1447
1444
|
*
|
|
@@ -1454,10 +1451,10 @@ declare module "sap/ui/table/Column" {
|
|
|
1454
1451
|
/**
|
|
1455
1452
|
* Parameters to pass along with the event
|
|
1456
1453
|
*/
|
|
1457
|
-
mParameters?: $
|
|
1454
|
+
mParameters?: Column$ColumnMenuOpenEventParameters
|
|
1458
1455
|
): boolean;
|
|
1459
1456
|
/**
|
|
1460
|
-
* @
|
|
1457
|
+
* @since 1.21.1
|
|
1461
1458
|
*
|
|
1462
1459
|
* Gets current value of property {@link #getAutoResizable autoResizable}.
|
|
1463
1460
|
*
|
|
@@ -1515,7 +1512,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1515
1512
|
*/
|
|
1516
1513
|
getFilterProperty(): string;
|
|
1517
1514
|
/**
|
|
1518
|
-
* @
|
|
1515
|
+
* @since 1.9.2
|
|
1519
1516
|
*
|
|
1520
1517
|
* Gets current value of property {@link #getFilterType filterType}.
|
|
1521
1518
|
*
|
|
@@ -1592,7 +1589,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1592
1589
|
*/
|
|
1593
1590
|
getHAlign(): HorizontalAlign | keyof typeof HorizontalAlign;
|
|
1594
1591
|
/**
|
|
1595
|
-
* @
|
|
1592
|
+
* @since 1.110
|
|
1596
1593
|
*
|
|
1597
1594
|
* ID of the element which is the current target of the association {@link #getHeaderMenu headerMenu}, or
|
|
1598
1595
|
* `null`.
|
|
@@ -1632,7 +1629,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1632
1629
|
*/
|
|
1633
1630
|
getMenu(): Menu;
|
|
1634
1631
|
/**
|
|
1635
|
-
* @
|
|
1632
|
+
* @since 1.44.1
|
|
1636
1633
|
*
|
|
1637
1634
|
* Gets current value of property {@link #getMinWidth minWidth}.
|
|
1638
1635
|
*
|
|
@@ -1647,7 +1644,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1647
1644
|
*/
|
|
1648
1645
|
getMinWidth(): int;
|
|
1649
1646
|
/**
|
|
1650
|
-
* @
|
|
1647
|
+
* @since 1.13.1
|
|
1651
1648
|
*
|
|
1652
1649
|
* Gets content of aggregation {@link #getMultiLabels multiLabels}.
|
|
1653
1650
|
*
|
|
@@ -1656,7 +1653,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1656
1653
|
*/
|
|
1657
1654
|
getMultiLabels(): Control[];
|
|
1658
1655
|
/**
|
|
1659
|
-
* @
|
|
1656
|
+
* @since 1.11.1
|
|
1660
1657
|
*
|
|
1661
1658
|
* Gets current value of property {@link #getName name}.
|
|
1662
1659
|
*
|
|
@@ -1679,7 +1676,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1679
1676
|
*/
|
|
1680
1677
|
getResizable(): boolean;
|
|
1681
1678
|
/**
|
|
1682
|
-
* @
|
|
1679
|
+
* @since 1.13.0
|
|
1683
1680
|
*
|
|
1684
1681
|
* Gets current value of property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
|
|
1685
1682
|
*
|
|
@@ -1691,7 +1688,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1691
1688
|
*/
|
|
1692
1689
|
getShowFilterMenuEntry(): boolean;
|
|
1693
1690
|
/**
|
|
1694
|
-
* @
|
|
1691
|
+
* @since 1.13.0
|
|
1695
1692
|
*
|
|
1696
1693
|
* Gets current value of property {@link #getShowSortMenuEntry showSortMenuEntry}.
|
|
1697
1694
|
*
|
|
@@ -1752,7 +1749,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1752
1749
|
*/
|
|
1753
1750
|
getTemplate(): Control | string;
|
|
1754
1751
|
/**
|
|
1755
|
-
* @
|
|
1752
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
1756
1753
|
*
|
|
1757
1754
|
* Returns a template clone. It either finds an unused clone or clones a new one from the template.
|
|
1758
1755
|
*
|
|
@@ -1787,7 +1784,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1787
1784
|
*/
|
|
1788
1785
|
getWidth(): CSSSize;
|
|
1789
1786
|
/**
|
|
1790
|
-
* @
|
|
1787
|
+
* @since 1.13.1
|
|
1791
1788
|
*
|
|
1792
1789
|
* Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMultiLabels multiLabels}.
|
|
1793
1790
|
* and returns its index if found or -1 otherwise.
|
|
@@ -1801,7 +1798,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1801
1798
|
oMultiLabel: Control
|
|
1802
1799
|
): int;
|
|
1803
1800
|
/**
|
|
1804
|
-
* @
|
|
1801
|
+
* @since 1.13.1
|
|
1805
1802
|
*
|
|
1806
1803
|
* Inserts a multiLabel into the aggregation {@link #getMultiLabels multiLabels}.
|
|
1807
1804
|
*
|
|
@@ -1820,7 +1817,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1820
1817
|
iIndex: int
|
|
1821
1818
|
): this;
|
|
1822
1819
|
/**
|
|
1823
|
-
* @
|
|
1820
|
+
* @since 1.13.1
|
|
1824
1821
|
*
|
|
1825
1822
|
* Removes all the controls from the aggregation {@link #getMultiLabels multiLabels}.
|
|
1826
1823
|
*
|
|
@@ -1830,7 +1827,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1830
1827
|
*/
|
|
1831
1828
|
removeAllMultiLabels(): Control[];
|
|
1832
1829
|
/**
|
|
1833
|
-
* @
|
|
1830
|
+
* @since 1.13.1
|
|
1834
1831
|
*
|
|
1835
1832
|
* Removes a multiLabel from the aggregation {@link #getMultiLabels multiLabels}.
|
|
1836
1833
|
*
|
|
@@ -1843,7 +1840,7 @@ declare module "sap/ui/table/Column" {
|
|
|
1843
1840
|
vMultiLabel: int | string | Control
|
|
1844
1841
|
): Control | null;
|
|
1845
1842
|
/**
|
|
1846
|
-
* @
|
|
1843
|
+
* @since 1.21.1
|
|
1847
1844
|
*
|
|
1848
1845
|
* Sets a new value for property {@link #getAutoResizable autoResizable}.
|
|
1849
1846
|
*
|
|
@@ -2038,7 +2035,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2038
2035
|
sHAlign?: HorizontalAlign | keyof typeof HorizontalAlign
|
|
2039
2036
|
): this;
|
|
2040
2037
|
/**
|
|
2041
|
-
* @
|
|
2038
|
+
* @since 1.110
|
|
2042
2039
|
*
|
|
2043
2040
|
* Sets the associated {@link #getHeaderMenu headerMenu}.
|
|
2044
2041
|
*
|
|
@@ -2096,7 +2093,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2096
2093
|
oMenu: Menu
|
|
2097
2094
|
): this;
|
|
2098
2095
|
/**
|
|
2099
|
-
* @
|
|
2096
|
+
* @since 1.44.1
|
|
2100
2097
|
*
|
|
2101
2098
|
* Sets a new value for property {@link #getMinWidth minWidth}.
|
|
2102
2099
|
*
|
|
@@ -2118,7 +2115,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2118
2115
|
iMinWidth?: int
|
|
2119
2116
|
): this;
|
|
2120
2117
|
/**
|
|
2121
|
-
* @
|
|
2118
|
+
* @since 1.11.1
|
|
2122
2119
|
*
|
|
2123
2120
|
* Sets a new value for property {@link #getName name}.
|
|
2124
2121
|
*
|
|
@@ -2155,7 +2152,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2155
2152
|
bResizable?: boolean
|
|
2156
2153
|
): this;
|
|
2157
2154
|
/**
|
|
2158
|
-
* @
|
|
2155
|
+
* @since 1.13.0
|
|
2159
2156
|
*
|
|
2160
2157
|
* Sets a new value for property {@link #getShowFilterMenuEntry showFilterMenuEntry}.
|
|
2161
2158
|
*
|
|
@@ -2174,7 +2171,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2174
2171
|
bShowFilterMenuEntry?: boolean
|
|
2175
2172
|
): this;
|
|
2176
2173
|
/**
|
|
2177
|
-
* @
|
|
2174
|
+
* @since 1.13.0
|
|
2178
2175
|
*
|
|
2179
2176
|
* Sets a new value for property {@link #getShowSortMenuEntry showSortMenuEntry}.
|
|
2180
2177
|
*
|
|
@@ -2296,7 +2293,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2296
2293
|
sWidth?: CSSSize
|
|
2297
2294
|
): this;
|
|
2298
2295
|
/**
|
|
2299
|
-
* @
|
|
2296
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2300
2297
|
*
|
|
2301
2298
|
* Returns whether the column should be rendered.
|
|
2302
2299
|
*
|
|
@@ -2323,7 +2320,6 @@ declare module "sap/ui/table/Column" {
|
|
|
2323
2320
|
*/
|
|
2324
2321
|
toggleSort(): void;
|
|
2325
2322
|
}
|
|
2326
|
-
export default Column;
|
|
2327
2323
|
|
|
2328
2324
|
export interface $ColumnSettings extends $ElementSettings {
|
|
2329
2325
|
/**
|
|
@@ -2336,7 +2332,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2336
2332
|
width?: CSSSize | PropertyBindingInfo | `{${string}}`;
|
|
2337
2333
|
|
|
2338
2334
|
/**
|
|
2339
|
-
* @
|
|
2335
|
+
* @since 1.44.1
|
|
2340
2336
|
*
|
|
2341
2337
|
* Defines the minimum width of a column in pixels. This property only has an effect if the given column
|
|
2342
2338
|
* width is flexible, for example with width `auto`. This property only influences the automatic behavior.
|
|
@@ -2445,7 +2441,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2445
2441
|
defaultFilterOperator?: string | PropertyBindingInfo;
|
|
2446
2442
|
|
|
2447
2443
|
/**
|
|
2448
|
-
* @
|
|
2444
|
+
* @since 1.9.2
|
|
2449
2445
|
*
|
|
2450
2446
|
* Type of filter. It is used to transform the search term into the specified type and should be the same
|
|
2451
2447
|
* as defined in the binding for the column template. Default value is `sap.ui.model.type.String`. It can
|
|
@@ -2468,7 +2464,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2468
2464
|
visible?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2469
2465
|
|
|
2470
2466
|
/**
|
|
2471
|
-
* @
|
|
2467
|
+
* @since 1.11.1
|
|
2472
2468
|
*
|
|
2473
2469
|
* The name of the column which is used for the text representation of this column, for example, in menus.
|
|
2474
2470
|
* If not set, the text from the multiLabels aggregation or the label aggregation (in that order) is used
|
|
@@ -2477,14 +2473,14 @@ declare module "sap/ui/table/Column" {
|
|
|
2477
2473
|
name?: string | PropertyBindingInfo;
|
|
2478
2474
|
|
|
2479
2475
|
/**
|
|
2480
|
-
* @
|
|
2476
|
+
* @since 1.13.0
|
|
2481
2477
|
*
|
|
2482
2478
|
* Defines if the filter menu entry is displayed
|
|
2483
2479
|
*/
|
|
2484
2480
|
showFilterMenuEntry?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
2485
2481
|
|
|
2486
2482
|
/**
|
|
2487
|
-
* @
|
|
2483
|
+
* @since 1.13.0
|
|
2488
2484
|
*
|
|
2489
2485
|
* Defines if the sort menu entries are displayed
|
|
2490
2486
|
*/
|
|
@@ -2501,7 +2497,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2501
2497
|
headerSpan?: any | PropertyBindingInfo | `{${string}}`;
|
|
2502
2498
|
|
|
2503
2499
|
/**
|
|
2504
|
-
* @
|
|
2500
|
+
* @since 1.21.1
|
|
2505
2501
|
*
|
|
2506
2502
|
* Enables auto-resizing of the column on double clicking the resize bar. The width is determined on the
|
|
2507
2503
|
* widest currently displayed content. It does not consider rows which are currently not scrolled into view.
|
|
@@ -2519,7 +2515,7 @@ declare module "sap/ui/table/Column" {
|
|
|
2519
2515
|
label?: string | Control | PropertyBindingInfo;
|
|
2520
2516
|
|
|
2521
2517
|
/**
|
|
2522
|
-
* @
|
|
2518
|
+
* @since 1.13.1
|
|
2523
2519
|
*
|
|
2524
2520
|
* Labels of the column which are displayed in the column header. Define a control for each header row in
|
|
2525
2521
|
* the table. Use this aggregation if you want to use multiple headers per column.
|
|
@@ -2549,28 +2545,36 @@ declare module "sap/ui/table/Column" {
|
|
|
2549
2545
|
menu?: Menu;
|
|
2550
2546
|
|
|
2551
2547
|
/**
|
|
2552
|
-
* @
|
|
2548
|
+
* @since 1.110
|
|
2553
2549
|
*
|
|
2554
2550
|
* The menu that can be opened by the header element of this column.
|
|
2555
2551
|
*/
|
|
2556
2552
|
headerMenu?: IColumnHeaderMenu | string;
|
|
2557
2553
|
|
|
2558
2554
|
/**
|
|
2559
|
-
* @
|
|
2555
|
+
* @since 1.33.0
|
|
2560
2556
|
*
|
|
2561
2557
|
* Fires before the column menu is opened.
|
|
2562
2558
|
*/
|
|
2563
2559
|
columnMenuOpen?: (
|
|
2564
|
-
oEvent: Event
|
|
2560
|
+
oEvent: Event<Column$ColumnMenuOpenEventParameters>
|
|
2565
2561
|
) => void;
|
|
2566
2562
|
}
|
|
2567
2563
|
|
|
2568
|
-
export interface $
|
|
2564
|
+
export interface Column$ColumnMenuOpenEventParameters {
|
|
2569
2565
|
/**
|
|
2570
2566
|
* Refence to the selected `menu` instance to be opened.
|
|
2571
2567
|
*/
|
|
2572
2568
|
menu?: Menu;
|
|
2573
2569
|
}
|
|
2570
|
+
|
|
2571
|
+
/**
|
|
2572
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Column$ColumnMenuOpenEventParameters'
|
|
2573
|
+
* in 1.115.1 and any later releases.
|
|
2574
|
+
*/
|
|
2575
|
+
export type $ColumnColumnMenuOpenEventParameters = Column$ColumnMenuOpenEventParameters;
|
|
2576
|
+
|
|
2577
|
+
export type Column$ColumnMenuOpenEvent = Event<Column$ColumnMenuOpenEventParameters>;
|
|
2574
2578
|
}
|
|
2575
2579
|
|
|
2576
2580
|
declare module "sap/ui/table/ColumnMenu" {
|
|
@@ -2581,7 +2585,7 @@ declare module "sap/ui/table/ColumnMenu" {
|
|
|
2581
2585
|
/**
|
|
2582
2586
|
* The column menu provides all common actions that can be performed on a column.
|
|
2583
2587
|
*/
|
|
2584
|
-
class ColumnMenu extends Menu {
|
|
2588
|
+
export default class ColumnMenu extends Menu {
|
|
2585
2589
|
/**
|
|
2586
2590
|
* Constructor for a new ColumnMenu.
|
|
2587
2591
|
*
|
|
@@ -2657,7 +2661,6 @@ declare module "sap/ui/table/ColumnMenu" {
|
|
|
2657
2661
|
*/
|
|
2658
2662
|
static getMetadata(): ElementMetadata;
|
|
2659
2663
|
}
|
|
2660
|
-
export default ColumnMenu;
|
|
2661
2664
|
|
|
2662
2665
|
export interface $ColumnMenuSettings extends $MenuSettings {}
|
|
2663
2666
|
}
|
|
@@ -2666,19 +2669,19 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2666
2669
|
import {
|
|
2667
2670
|
default as SelectionPlugin,
|
|
2668
2671
|
$SelectionPluginSettings,
|
|
2669
|
-
$
|
|
2672
|
+
SelectionPlugin$SelectionChangeEventParameters,
|
|
2670
2673
|
} from "sap/ui/table/plugins/SelectionPlugin";
|
|
2671
2674
|
|
|
2672
|
-
import Event from "sap/ui/base/Event";
|
|
2673
|
-
|
|
2674
2675
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
2675
2676
|
|
|
2676
2677
|
import { SelectionMode } from "sap/ui/table/library";
|
|
2677
2678
|
|
|
2678
2679
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
2679
2680
|
|
|
2681
|
+
import Event from "sap/ui/base/Event";
|
|
2682
|
+
|
|
2680
2683
|
/**
|
|
2681
|
-
* @
|
|
2684
|
+
* @since 1.64
|
|
2682
2685
|
*
|
|
2683
2686
|
* Implements a plugin to enable a special multi-selection behavior:
|
|
2684
2687
|
* - No Select All checkbox, select all can only be done via range selection
|
|
@@ -2694,7 +2697,7 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2694
2697
|
* Select All, only work properly if the count is known. Make sure the model/binding is configured to request
|
|
2695
2698
|
* the count from the service. For ease of use, client-side models and single selection are also supported.
|
|
2696
2699
|
*/
|
|
2697
|
-
class MultiSelectionPlugin extends SelectionPlugin {
|
|
2700
|
+
export default class MultiSelectionPlugin extends SelectionPlugin {
|
|
2698
2701
|
/**
|
|
2699
2702
|
* Constructs an instance of sap.ui.table.plugins.MultiSelectionPlugin
|
|
2700
2703
|
*
|
|
@@ -2777,9 +2780,7 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2777
2780
|
/**
|
|
2778
2781
|
* The function to be called when the event occurs
|
|
2779
2782
|
*/
|
|
2780
|
-
fnFunction: (
|
|
2781
|
-
p1: Event<$MultiSelectionPluginSelectionChangeEventParameters>
|
|
2782
|
-
) => void,
|
|
2783
|
+
fnFunction: (p1: MultiSelectionPlugin$SelectionChangeEvent) => void,
|
|
2783
2784
|
/**
|
|
2784
2785
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.plugins.MultiSelectionPlugin`
|
|
2785
2786
|
* itself
|
|
@@ -2801,9 +2802,7 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2801
2802
|
/**
|
|
2802
2803
|
* The function to be called when the event occurs
|
|
2803
2804
|
*/
|
|
2804
|
-
fnFunction: (
|
|
2805
|
-
p1: Event<$MultiSelectionPluginSelectionChangeEventParameters>
|
|
2806
|
-
) => void,
|
|
2805
|
+
fnFunction: (p1: MultiSelectionPlugin$SelectionChangeEvent) => void,
|
|
2807
2806
|
/**
|
|
2808
2807
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.plugins.MultiSelectionPlugin`
|
|
2809
2808
|
* itself
|
|
@@ -2832,16 +2831,14 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2832
2831
|
/**
|
|
2833
2832
|
* The function to be called, when the event occurs
|
|
2834
2833
|
*/
|
|
2835
|
-
fnFunction: (
|
|
2836
|
-
p1: Event<$MultiSelectionPluginSelectionChangeEventParameters>
|
|
2837
|
-
) => void,
|
|
2834
|
+
fnFunction: (p1: MultiSelectionPlugin$SelectionChangeEvent) => void,
|
|
2838
2835
|
/**
|
|
2839
2836
|
* Context object on which the given function had to be called
|
|
2840
2837
|
*/
|
|
2841
2838
|
oListener?: object
|
|
2842
2839
|
): this;
|
|
2843
2840
|
/**
|
|
2844
|
-
* @
|
|
2841
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
2845
2842
|
*
|
|
2846
2843
|
* Fires event {@link #event:selectionChange selectionChange} to attached listeners.
|
|
2847
2844
|
*
|
|
@@ -2851,10 +2848,10 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2851
2848
|
/**
|
|
2852
2849
|
* Parameters to pass along with the event
|
|
2853
2850
|
*/
|
|
2854
|
-
mParameters?: $
|
|
2851
|
+
mParameters?: MultiSelectionPlugin$SelectionChangeEventParameters
|
|
2855
2852
|
): this;
|
|
2856
2853
|
/**
|
|
2857
|
-
* @
|
|
2854
|
+
* @since 1.71
|
|
2858
2855
|
*
|
|
2859
2856
|
* Gets current value of property {@link #getEnableNotification enableNotification}.
|
|
2860
2857
|
*
|
|
@@ -2957,7 +2954,7 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
2957
2954
|
oEventPayload?: object
|
|
2958
2955
|
): Promise<any>;
|
|
2959
2956
|
/**
|
|
2960
|
-
* @
|
|
2957
|
+
* @since 1.71
|
|
2961
2958
|
*
|
|
2962
2959
|
* Sets a new value for property {@link #getEnableNotification enableNotification}.
|
|
2963
2960
|
*
|
|
@@ -3079,7 +3076,6 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3079
3076
|
bShowHeaderSelector?: boolean
|
|
3080
3077
|
): this;
|
|
3081
3078
|
}
|
|
3082
|
-
export default MultiSelectionPlugin;
|
|
3083
3079
|
|
|
3084
3080
|
export interface $MultiSelectionPluginSettings
|
|
3085
3081
|
extends $SelectionPluginSettings {
|
|
@@ -3099,7 +3095,7 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3099
3095
|
limit?: int | PropertyBindingInfo | `{${string}}`;
|
|
3100
3096
|
|
|
3101
3097
|
/**
|
|
3102
|
-
* @
|
|
3098
|
+
* @since 1.71
|
|
3103
3099
|
*
|
|
3104
3100
|
* Enables notifications that are displayed once a selection has been limited.
|
|
3105
3101
|
*/
|
|
@@ -3124,12 +3120,12 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3124
3120
|
* This event is fired when the selection is changed.
|
|
3125
3121
|
*/
|
|
3126
3122
|
selectionChange?: (
|
|
3127
|
-
oEvent: Event
|
|
3123
|
+
oEvent: Event<MultiSelectionPlugin$SelectionChangeEventParameters>
|
|
3128
3124
|
) => void;
|
|
3129
3125
|
}
|
|
3130
3126
|
|
|
3131
|
-
export interface $
|
|
3132
|
-
extends $
|
|
3127
|
+
export interface MultiSelectionPlugin$SelectionChangeEventParameters
|
|
3128
|
+
extends SelectionPlugin$SelectionChangeEventParameters {
|
|
3133
3129
|
/**
|
|
3134
3130
|
* Array of indices whose selection has been changed (either selected or deselected)
|
|
3135
3131
|
*/
|
|
@@ -3145,6 +3141,14 @@ declare module "sap/ui/table/plugins/MultiSelectionPlugin" {
|
|
|
3145
3141
|
*/
|
|
3146
3142
|
customPayload?: object;
|
|
3147
3143
|
}
|
|
3144
|
+
|
|
3145
|
+
/**
|
|
3146
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'MultiSelectionPlugin$SelectionChangeEventParameters'
|
|
3147
|
+
* in 1.115.1 and any later releases.
|
|
3148
|
+
*/
|
|
3149
|
+
export type $MultiSelectionPluginSelectionChangeEventParameters = MultiSelectionPlugin$SelectionChangeEventParameters;
|
|
3150
|
+
|
|
3151
|
+
export type MultiSelectionPlugin$SelectionChangeEvent = Event<MultiSelectionPlugin$SelectionChangeEventParameters>;
|
|
3148
3152
|
}
|
|
3149
3153
|
|
|
3150
3154
|
declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
@@ -3157,12 +3161,12 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3157
3161
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3158
3162
|
|
|
3159
3163
|
/**
|
|
3160
|
-
* @
|
|
3161
|
-
* @
|
|
3164
|
+
* @since 1.64
|
|
3165
|
+
* @experimental (since 1.64)
|
|
3162
3166
|
*
|
|
3163
3167
|
* Implements the selection methods for a table.
|
|
3164
3168
|
*/
|
|
3165
|
-
class SelectionPlugin extends UI5Element {
|
|
3169
|
+
export default class SelectionPlugin extends UI5Element {
|
|
3166
3170
|
/**
|
|
3167
3171
|
* Constructs an instance of sap.ui.table.plugins.SelectionPlugin
|
|
3168
3172
|
*
|
|
@@ -3272,7 +3276,7 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3272
3276
|
oListener?: object
|
|
3273
3277
|
): this;
|
|
3274
3278
|
/**
|
|
3275
|
-
* @
|
|
3279
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3276
3280
|
*
|
|
3277
3281
|
* Fires event {@link #event:selectionChange selectionChange} to attached listeners.
|
|
3278
3282
|
*
|
|
@@ -3312,7 +3316,6 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3312
3316
|
bEnabled?: boolean
|
|
3313
3317
|
): this;
|
|
3314
3318
|
}
|
|
3315
|
-
export default SelectionPlugin;
|
|
3316
3319
|
|
|
3317
3320
|
export interface $SelectionPluginSettings extends $ElementSettings {
|
|
3318
3321
|
/**
|
|
@@ -3326,7 +3329,15 @@ declare module "sap/ui/table/plugins/SelectionPlugin" {
|
|
|
3326
3329
|
selectionChange?: (oEvent: Event) => void;
|
|
3327
3330
|
}
|
|
3328
3331
|
|
|
3329
|
-
export interface $
|
|
3332
|
+
export interface SelectionPlugin$SelectionChangeEventParameters {}
|
|
3333
|
+
|
|
3334
|
+
/**
|
|
3335
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'SelectionPlugin$SelectionChangeEventParameters'
|
|
3336
|
+
* in 1.115.1 and any later releases.
|
|
3337
|
+
*/
|
|
3338
|
+
export type $SelectionPluginSelectionChangeEventParameters = SelectionPlugin$SelectionChangeEventParameters;
|
|
3339
|
+
|
|
3340
|
+
export type SelectionPlugin$SelectionChangeEvent = Event<SelectionPlugin$SelectionChangeEventParameters>;
|
|
3330
3341
|
}
|
|
3331
3342
|
|
|
3332
3343
|
declare module "sap/ui/table/Row" {
|
|
@@ -3341,7 +3352,7 @@ declare module "sap/ui/table/Row" {
|
|
|
3341
3352
|
/**
|
|
3342
3353
|
* The row.
|
|
3343
3354
|
*/
|
|
3344
|
-
class Row extends UI5Element {
|
|
3355
|
+
export default class Row extends UI5Element {
|
|
3345
3356
|
/**
|
|
3346
3357
|
* Constructor for a new Row.
|
|
3347
3358
|
*
|
|
@@ -3483,7 +3494,6 @@ declare module "sap/ui/table/Row" {
|
|
|
3483
3494
|
vCell: int | string | Control
|
|
3484
3495
|
): Control | null;
|
|
3485
3496
|
}
|
|
3486
|
-
export default Row;
|
|
3487
3497
|
|
|
3488
3498
|
export interface $RowSettings extends $ElementSettings {
|
|
3489
3499
|
/**
|
|
@@ -3508,13 +3518,13 @@ declare module "sap/ui/table/RowAction" {
|
|
|
3508
3518
|
} from "sap/ui/base/ManagedObject";
|
|
3509
3519
|
|
|
3510
3520
|
/**
|
|
3511
|
-
* @
|
|
3521
|
+
* @since 1.45
|
|
3512
3522
|
*
|
|
3513
3523
|
* The `RowAction` control allows to display multiple action items which can be selected by the user. If
|
|
3514
3524
|
* more action items are available as the available space allows to display an overflow mechanism is provided.
|
|
3515
3525
|
* This control must only be used in the context of the `sap.ui.table.Table` control to define row actions.
|
|
3516
3526
|
*/
|
|
3517
|
-
class RowAction extends Control {
|
|
3527
|
+
export default class RowAction extends Control {
|
|
3518
3528
|
/**
|
|
3519
3529
|
* Constructor for a new RowAction.
|
|
3520
3530
|
*
|
|
@@ -3674,7 +3684,6 @@ declare module "sap/ui/table/RowAction" {
|
|
|
3674
3684
|
bVisible?: boolean
|
|
3675
3685
|
): this;
|
|
3676
3686
|
}
|
|
3677
|
-
export default RowAction;
|
|
3678
3687
|
|
|
3679
3688
|
export interface $RowActionSettings extends $ControlSettings {
|
|
3680
3689
|
/**
|
|
@@ -3696,8 +3705,6 @@ declare module "sap/ui/table/RowAction" {
|
|
|
3696
3705
|
declare module "sap/ui/table/RowActionItem" {
|
|
3697
3706
|
import { default as UI5Element, $ElementSettings } from "sap/ui/core/Element";
|
|
3698
3707
|
|
|
3699
|
-
import Event from "sap/ui/base/Event";
|
|
3700
|
-
|
|
3701
3708
|
import { URI } from "sap/ui/core/library";
|
|
3702
3709
|
|
|
3703
3710
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -3706,15 +3713,17 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
3706
3713
|
|
|
3707
3714
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
3708
3715
|
|
|
3716
|
+
import Event from "sap/ui/base/Event";
|
|
3717
|
+
|
|
3709
3718
|
import Row from "sap/ui/table/Row";
|
|
3710
3719
|
|
|
3711
3720
|
/**
|
|
3712
|
-
* @
|
|
3721
|
+
* @since 1.45
|
|
3713
3722
|
*
|
|
3714
3723
|
* An action items to be displayed in a `RowAction` control. This element must only be used in the context
|
|
3715
3724
|
* of the `sap.ui.table.Table` control to define row actions.
|
|
3716
3725
|
*/
|
|
3717
|
-
class RowActionItem extends UI5Element {
|
|
3726
|
+
export default class RowActionItem extends UI5Element {
|
|
3718
3727
|
/**
|
|
3719
3728
|
* Constructor for a new RowActionItem.
|
|
3720
3729
|
*
|
|
@@ -3794,7 +3803,7 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
3794
3803
|
/**
|
|
3795
3804
|
* The function to be called when the event occurs
|
|
3796
3805
|
*/
|
|
3797
|
-
fnFunction: (p1:
|
|
3806
|
+
fnFunction: (p1: RowActionItem$PressEvent) => void,
|
|
3798
3807
|
/**
|
|
3799
3808
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.RowActionItem` itself
|
|
3800
3809
|
*/
|
|
@@ -3814,7 +3823,7 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
3814
3823
|
/**
|
|
3815
3824
|
* The function to be called when the event occurs
|
|
3816
3825
|
*/
|
|
3817
|
-
fnFunction: (p1:
|
|
3826
|
+
fnFunction: (p1: RowActionItem$PressEvent) => void,
|
|
3818
3827
|
/**
|
|
3819
3828
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.RowActionItem` itself
|
|
3820
3829
|
*/
|
|
@@ -3831,14 +3840,14 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
3831
3840
|
/**
|
|
3832
3841
|
* The function to be called, when the event occurs
|
|
3833
3842
|
*/
|
|
3834
|
-
fnFunction: (p1:
|
|
3843
|
+
fnFunction: (p1: RowActionItem$PressEvent) => void,
|
|
3835
3844
|
/**
|
|
3836
3845
|
* Context object on which the given function had to be called
|
|
3837
3846
|
*/
|
|
3838
3847
|
oListener?: object
|
|
3839
3848
|
): this;
|
|
3840
3849
|
/**
|
|
3841
|
-
* @
|
|
3850
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
3842
3851
|
*
|
|
3843
3852
|
* Fires event {@link #event:press press} to attached listeners.
|
|
3844
3853
|
*
|
|
@@ -3848,7 +3857,7 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
3848
3857
|
/**
|
|
3849
3858
|
* Parameters to pass along with the event
|
|
3850
3859
|
*/
|
|
3851
|
-
mParameters?: $
|
|
3860
|
+
mParameters?: RowActionItem$PressEventParameters
|
|
3852
3861
|
): this;
|
|
3853
3862
|
/**
|
|
3854
3863
|
* Gets current value of property {@link #getIcon icon}.
|
|
@@ -3957,7 +3966,6 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
3957
3966
|
bVisible?: boolean
|
|
3958
3967
|
): this;
|
|
3959
3968
|
}
|
|
3960
|
-
export default RowActionItem;
|
|
3961
3969
|
|
|
3962
3970
|
export interface $RowActionItemSettings extends $ElementSettings {
|
|
3963
3971
|
/**
|
|
@@ -3987,10 +3995,10 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
3987
3995
|
/**
|
|
3988
3996
|
* The `press` is fired when the user triggers the corresponding action.
|
|
3989
3997
|
*/
|
|
3990
|
-
press?: (oEvent: Event
|
|
3998
|
+
press?: (oEvent: Event<RowActionItem$PressEventParameters>) => void;
|
|
3991
3999
|
}
|
|
3992
4000
|
|
|
3993
|
-
export interface $
|
|
4001
|
+
export interface RowActionItem$PressEventParameters {
|
|
3994
4002
|
/**
|
|
3995
4003
|
* The item which was pressed.
|
|
3996
4004
|
*/
|
|
@@ -4001,6 +4009,14 @@ declare module "sap/ui/table/RowActionItem" {
|
|
|
4001
4009
|
*/
|
|
4002
4010
|
row?: Row;
|
|
4003
4011
|
}
|
|
4012
|
+
|
|
4013
|
+
/**
|
|
4014
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'RowActionItem$PressEventParameters'
|
|
4015
|
+
* in 1.115.1 and any later releases.
|
|
4016
|
+
*/
|
|
4017
|
+
export type $RowActionItemPressEventParameters = RowActionItem$PressEventParameters;
|
|
4018
|
+
|
|
4019
|
+
export type RowActionItem$PressEvent = Event<RowActionItem$PressEventParameters>;
|
|
4004
4020
|
}
|
|
4005
4021
|
|
|
4006
4022
|
declare module "sap/ui/table/RowSettings" {
|
|
@@ -4011,12 +4027,12 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4011
4027
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
4012
4028
|
|
|
4013
4029
|
/**
|
|
4014
|
-
* @
|
|
4030
|
+
* @since 1.48.0
|
|
4015
4031
|
*
|
|
4016
4032
|
* The `RowSettings` control allows you to configure a row. You can only use this control in the context
|
|
4017
4033
|
* of the `sap.ui.table.Table` control to define row settings.
|
|
4018
4034
|
*/
|
|
4019
|
-
class RowSettings extends UI5Element {
|
|
4035
|
+
export default class RowSettings extends UI5Element {
|
|
4020
4036
|
/**
|
|
4021
4037
|
* Constructor for new RowSettings.
|
|
4022
4038
|
*
|
|
@@ -4078,7 +4094,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4078
4094
|
*/
|
|
4079
4095
|
static getMetadata(): ElementMetadata;
|
|
4080
4096
|
/**
|
|
4081
|
-
* @
|
|
4097
|
+
* @since 1.48.0
|
|
4082
4098
|
*
|
|
4083
4099
|
* Gets current value of property {@link #getHighlight highlight}.
|
|
4084
4100
|
*
|
|
@@ -4099,7 +4115,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4099
4115
|
*/
|
|
4100
4116
|
getHighlight(): string;
|
|
4101
4117
|
/**
|
|
4102
|
-
* @
|
|
4118
|
+
* @since 1.62
|
|
4103
4119
|
*
|
|
4104
4120
|
* Gets current value of property {@link #getHighlightText highlightText}.
|
|
4105
4121
|
*
|
|
@@ -4113,7 +4129,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4113
4129
|
*/
|
|
4114
4130
|
getHighlightText(): string;
|
|
4115
4131
|
/**
|
|
4116
|
-
* @
|
|
4132
|
+
* @since 1.72
|
|
4117
4133
|
*
|
|
4118
4134
|
* Gets current value of property {@link #getNavigated navigated}.
|
|
4119
4135
|
*
|
|
@@ -4128,7 +4144,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4128
4144
|
*/
|
|
4129
4145
|
getNavigated(): boolean;
|
|
4130
4146
|
/**
|
|
4131
|
-
* @
|
|
4147
|
+
* @since 1.48.0
|
|
4132
4148
|
*
|
|
4133
4149
|
* Sets a new value for property {@link #getHighlight highlight}.
|
|
4134
4150
|
*
|
|
@@ -4156,7 +4172,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4156
4172
|
sHighlight?: string
|
|
4157
4173
|
): this;
|
|
4158
4174
|
/**
|
|
4159
|
-
* @
|
|
4175
|
+
* @since 1.62
|
|
4160
4176
|
*
|
|
4161
4177
|
* Sets a new value for property {@link #getHighlightText highlightText}.
|
|
4162
4178
|
*
|
|
@@ -4177,7 +4193,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4177
4193
|
sHighlightText?: string
|
|
4178
4194
|
): this;
|
|
4179
4195
|
/**
|
|
4180
|
-
* @
|
|
4196
|
+
* @since 1.72
|
|
4181
4197
|
*
|
|
4182
4198
|
* Sets a new value for property {@link #getNavigated navigated}.
|
|
4183
4199
|
*
|
|
@@ -4199,11 +4215,10 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4199
4215
|
bNavigated?: boolean
|
|
4200
4216
|
): this;
|
|
4201
4217
|
}
|
|
4202
|
-
export default RowSettings;
|
|
4203
4218
|
|
|
4204
4219
|
export interface $RowSettingsSettings extends $ElementSettings {
|
|
4205
4220
|
/**
|
|
4206
|
-
* @
|
|
4221
|
+
* @since 1.48.0
|
|
4207
4222
|
*
|
|
4208
4223
|
* The highlight state of the rows.
|
|
4209
4224
|
*
|
|
@@ -4219,7 +4234,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4219
4234
|
highlight?: string | PropertyBindingInfo;
|
|
4220
4235
|
|
|
4221
4236
|
/**
|
|
4222
|
-
* @
|
|
4237
|
+
* @since 1.62
|
|
4223
4238
|
*
|
|
4224
4239
|
* Defines the semantics of the {@link sap.ui.table.RowSettings#setHighlight highlight} property for accessibility
|
|
4225
4240
|
* purposes. It is only used as an invisible text for screen reader support and does not add a tooltip to
|
|
@@ -4228,7 +4243,7 @@ declare module "sap/ui/table/RowSettings" {
|
|
|
4228
4243
|
highlightText?: string | PropertyBindingInfo;
|
|
4229
4244
|
|
|
4230
4245
|
/**
|
|
4231
|
-
* @
|
|
4246
|
+
* @since 1.72
|
|
4232
4247
|
*
|
|
4233
4248
|
* The navigated state of a row.
|
|
4234
4249
|
*
|
|
@@ -4293,7 +4308,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4293
4308
|
* The Table control relies completely on data binding, and its supported feature set is tightly
|
|
4294
4309
|
* coupled to the data model and binding being used.
|
|
4295
4310
|
*/
|
|
4296
|
-
class Table extends Control {
|
|
4311
|
+
export default class Table extends Control {
|
|
4297
4312
|
/**
|
|
4298
4313
|
* Constructor for a new Table.
|
|
4299
4314
|
*
|
|
@@ -4396,7 +4411,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4396
4411
|
oExtension: Control
|
|
4397
4412
|
): this;
|
|
4398
4413
|
/**
|
|
4399
|
-
* @
|
|
4414
|
+
* @since 1.64
|
|
4400
4415
|
*
|
|
4401
4416
|
* Adds some plugin to the aggregation {@link #getPlugins plugins}.
|
|
4402
4417
|
*
|
|
@@ -4436,7 +4451,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4436
4451
|
iIndexTo: int
|
|
4437
4452
|
): this;
|
|
4438
4453
|
/**
|
|
4439
|
-
* @
|
|
4454
|
+
* @since 1.54
|
|
4440
4455
|
*
|
|
4441
4456
|
* Attaches event handler `fnFunction` to the {@link #event:beforeOpenContextMenu beforeOpenContextMenu }
|
|
4442
4457
|
* event of this `sap.ui.table.Table`.
|
|
@@ -4457,16 +4472,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4457
4472
|
/**
|
|
4458
4473
|
* The function to be called when the event occurs
|
|
4459
4474
|
*/
|
|
4460
|
-
fnFunction: (
|
|
4461
|
-
p1: Event<$TableBeforeOpenContextMenuEventParameters>
|
|
4462
|
-
) => void,
|
|
4475
|
+
fnFunction: (p1: Table$BeforeOpenContextMenuEvent) => void,
|
|
4463
4476
|
/**
|
|
4464
4477
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4465
4478
|
*/
|
|
4466
4479
|
oListener?: object
|
|
4467
4480
|
): this;
|
|
4468
4481
|
/**
|
|
4469
|
-
* @
|
|
4482
|
+
* @since 1.54
|
|
4470
4483
|
*
|
|
4471
4484
|
* Attaches event handler `fnFunction` to the {@link #event:beforeOpenContextMenu beforeOpenContextMenu }
|
|
4472
4485
|
* event of this `sap.ui.table.Table`.
|
|
@@ -4482,16 +4495,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4482
4495
|
/**
|
|
4483
4496
|
* The function to be called when the event occurs
|
|
4484
4497
|
*/
|
|
4485
|
-
fnFunction: (
|
|
4486
|
-
p1: Event<$TableBeforeOpenContextMenuEventParameters>
|
|
4487
|
-
) => void,
|
|
4498
|
+
fnFunction: (p1: Table$BeforeOpenContextMenuEvent) => void,
|
|
4488
4499
|
/**
|
|
4489
4500
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4490
4501
|
*/
|
|
4491
4502
|
oListener?: object
|
|
4492
4503
|
): this;
|
|
4493
4504
|
/**
|
|
4494
|
-
* @
|
|
4505
|
+
* @since 1.37.0
|
|
4495
4506
|
*
|
|
4496
4507
|
* Attaches event handler `fnFunction` to the {@link #event:busyStateChanged busyStateChanged} event of
|
|
4497
4508
|
* this `sap.ui.table.Table`.
|
|
@@ -4512,14 +4523,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4512
4523
|
/**
|
|
4513
4524
|
* The function to be called when the event occurs
|
|
4514
4525
|
*/
|
|
4515
|
-
fnFunction: (p1:
|
|
4526
|
+
fnFunction: (p1: Table$BusyStateChangedEvent) => void,
|
|
4516
4527
|
/**
|
|
4517
4528
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4518
4529
|
*/
|
|
4519
4530
|
oListener?: object
|
|
4520
4531
|
): this;
|
|
4521
4532
|
/**
|
|
4522
|
-
* @
|
|
4533
|
+
* @since 1.37.0
|
|
4523
4534
|
*
|
|
4524
4535
|
* Attaches event handler `fnFunction` to the {@link #event:busyStateChanged busyStateChanged} event of
|
|
4525
4536
|
* this `sap.ui.table.Table`.
|
|
@@ -4535,14 +4546,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4535
4546
|
/**
|
|
4536
4547
|
* The function to be called when the event occurs
|
|
4537
4548
|
*/
|
|
4538
|
-
fnFunction: (p1:
|
|
4549
|
+
fnFunction: (p1: Table$BusyStateChangedEvent) => void,
|
|
4539
4550
|
/**
|
|
4540
4551
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4541
4552
|
*/
|
|
4542
4553
|
oListener?: object
|
|
4543
4554
|
): this;
|
|
4544
4555
|
/**
|
|
4545
|
-
* @
|
|
4556
|
+
* @since 1.21.0
|
|
4546
4557
|
*
|
|
4547
4558
|
* Attaches event handler `fnFunction` to the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
|
|
4548
4559
|
*
|
|
@@ -4562,14 +4573,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4562
4573
|
/**
|
|
4563
4574
|
* The function to be called when the event occurs
|
|
4564
4575
|
*/
|
|
4565
|
-
fnFunction: (p1:
|
|
4576
|
+
fnFunction: (p1: Table$CellClickEvent) => void,
|
|
4566
4577
|
/**
|
|
4567
4578
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4568
4579
|
*/
|
|
4569
4580
|
oListener?: object
|
|
4570
4581
|
): this;
|
|
4571
4582
|
/**
|
|
4572
|
-
* @
|
|
4583
|
+
* @since 1.21.0
|
|
4573
4584
|
*
|
|
4574
4585
|
* Attaches event handler `fnFunction` to the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
|
|
4575
4586
|
*
|
|
@@ -4584,14 +4595,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4584
4595
|
/**
|
|
4585
4596
|
* The function to be called when the event occurs
|
|
4586
4597
|
*/
|
|
4587
|
-
fnFunction: (p1:
|
|
4598
|
+
fnFunction: (p1: Table$CellClickEvent) => void,
|
|
4588
4599
|
/**
|
|
4589
4600
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4590
4601
|
*/
|
|
4591
4602
|
oListener?: object
|
|
4592
4603
|
): this;
|
|
4593
4604
|
/**
|
|
4594
|
-
* @
|
|
4605
|
+
* @since 1.21.0
|
|
4595
4606
|
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
4596
4607
|
*
|
|
4597
4608
|
* Attaches event handler `fnFunction` to the {@link #event:cellContextmenu cellContextmenu} event of this
|
|
@@ -4613,14 +4624,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4613
4624
|
/**
|
|
4614
4625
|
* The function to be called when the event occurs
|
|
4615
4626
|
*/
|
|
4616
|
-
fnFunction: (p1:
|
|
4627
|
+
fnFunction: (p1: Table$CellContextmenuEvent) => void,
|
|
4617
4628
|
/**
|
|
4618
4629
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4619
4630
|
*/
|
|
4620
4631
|
oListener?: object
|
|
4621
4632
|
): this;
|
|
4622
4633
|
/**
|
|
4623
|
-
* @
|
|
4634
|
+
* @since 1.21.0
|
|
4624
4635
|
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
4625
4636
|
*
|
|
4626
4637
|
* Attaches event handler `fnFunction` to the {@link #event:cellContextmenu cellContextmenu} event of this
|
|
@@ -4637,14 +4648,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4637
4648
|
/**
|
|
4638
4649
|
* The function to be called when the event occurs
|
|
4639
4650
|
*/
|
|
4640
|
-
fnFunction: (p1:
|
|
4651
|
+
fnFunction: (p1: Table$CellContextmenuEvent) => void,
|
|
4641
4652
|
/**
|
|
4642
4653
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4643
4654
|
*/
|
|
4644
4655
|
oListener?: object
|
|
4645
4656
|
): this;
|
|
4646
4657
|
/**
|
|
4647
|
-
* @
|
|
4658
|
+
* @since 1.21.0
|
|
4648
4659
|
*
|
|
4649
4660
|
* Attaches event handler `fnFunction` to the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
|
|
4650
4661
|
*
|
|
@@ -4664,14 +4675,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4664
4675
|
/**
|
|
4665
4676
|
* The function to be called when the event occurs
|
|
4666
4677
|
*/
|
|
4667
|
-
fnFunction: (p1:
|
|
4678
|
+
fnFunction: (p1: Table$ColumnFreezeEvent) => void,
|
|
4668
4679
|
/**
|
|
4669
4680
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4670
4681
|
*/
|
|
4671
4682
|
oListener?: object
|
|
4672
4683
|
): this;
|
|
4673
4684
|
/**
|
|
4674
|
-
* @
|
|
4685
|
+
* @since 1.21.0
|
|
4675
4686
|
*
|
|
4676
4687
|
* Attaches event handler `fnFunction` to the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
|
|
4677
4688
|
*
|
|
@@ -4686,7 +4697,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4686
4697
|
/**
|
|
4687
4698
|
* The function to be called when the event occurs
|
|
4688
4699
|
*/
|
|
4689
|
-
fnFunction: (p1:
|
|
4700
|
+
fnFunction: (p1: Table$ColumnFreezeEvent) => void,
|
|
4690
4701
|
/**
|
|
4691
4702
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4692
4703
|
*/
|
|
@@ -4711,7 +4722,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4711
4722
|
/**
|
|
4712
4723
|
* The function to be called when the event occurs
|
|
4713
4724
|
*/
|
|
4714
|
-
fnFunction: (p1:
|
|
4725
|
+
fnFunction: (p1: Table$ColumnMoveEvent) => void,
|
|
4715
4726
|
/**
|
|
4716
4727
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4717
4728
|
*/
|
|
@@ -4731,7 +4742,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4731
4742
|
/**
|
|
4732
4743
|
* The function to be called when the event occurs
|
|
4733
4744
|
*/
|
|
4734
|
-
fnFunction: (p1:
|
|
4745
|
+
fnFunction: (p1: Table$ColumnMoveEvent) => void,
|
|
4735
4746
|
/**
|
|
4736
4747
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4737
4748
|
*/
|
|
@@ -4756,7 +4767,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4756
4767
|
/**
|
|
4757
4768
|
* The function to be called when the event occurs
|
|
4758
4769
|
*/
|
|
4759
|
-
fnFunction: (p1:
|
|
4770
|
+
fnFunction: (p1: Table$ColumnResizeEvent) => void,
|
|
4760
4771
|
/**
|
|
4761
4772
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4762
4773
|
*/
|
|
@@ -4776,7 +4787,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4776
4787
|
/**
|
|
4777
4788
|
* The function to be called when the event occurs
|
|
4778
4789
|
*/
|
|
4779
|
-
fnFunction: (p1:
|
|
4790
|
+
fnFunction: (p1: Table$ColumnResizeEvent) => void,
|
|
4780
4791
|
/**
|
|
4781
4792
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4782
4793
|
*/
|
|
@@ -4801,7 +4812,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4801
4812
|
/**
|
|
4802
4813
|
* The function to be called when the event occurs
|
|
4803
4814
|
*/
|
|
4804
|
-
fnFunction: (p1:
|
|
4815
|
+
fnFunction: (p1: Table$ColumnSelectEvent) => void,
|
|
4805
4816
|
/**
|
|
4806
4817
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4807
4818
|
*/
|
|
@@ -4821,7 +4832,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4821
4832
|
/**
|
|
4822
4833
|
* The function to be called when the event occurs
|
|
4823
4834
|
*/
|
|
4824
|
-
fnFunction: (p1:
|
|
4835
|
+
fnFunction: (p1: Table$ColumnSelectEvent) => void,
|
|
4825
4836
|
/**
|
|
4826
4837
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4827
4838
|
*/
|
|
@@ -4847,7 +4858,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4847
4858
|
/**
|
|
4848
4859
|
* The function to be called when the event occurs
|
|
4849
4860
|
*/
|
|
4850
|
-
fnFunction: (p1:
|
|
4861
|
+
fnFunction: (p1: Table$ColumnVisibilityEvent) => void,
|
|
4851
4862
|
/**
|
|
4852
4863
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4853
4864
|
*/
|
|
@@ -4868,14 +4879,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4868
4879
|
/**
|
|
4869
4880
|
* The function to be called when the event occurs
|
|
4870
4881
|
*/
|
|
4871
|
-
fnFunction: (p1:
|
|
4882
|
+
fnFunction: (p1: Table$ColumnVisibilityEvent) => void,
|
|
4872
4883
|
/**
|
|
4873
4884
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4874
4885
|
*/
|
|
4875
4886
|
oListener?: object
|
|
4876
4887
|
): this;
|
|
4877
4888
|
/**
|
|
4878
|
-
* @
|
|
4889
|
+
* @since 1.23.0
|
|
4879
4890
|
*
|
|
4880
4891
|
* Attaches event handler `fnFunction` to the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
|
|
4881
4892
|
*
|
|
@@ -4896,14 +4907,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4896
4907
|
/**
|
|
4897
4908
|
* The function to be called when the event occurs
|
|
4898
4909
|
*/
|
|
4899
|
-
fnFunction: (p1:
|
|
4910
|
+
fnFunction: (p1: Table$CustomFilterEvent) => void,
|
|
4900
4911
|
/**
|
|
4901
4912
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4902
4913
|
*/
|
|
4903
4914
|
oListener?: object
|
|
4904
4915
|
): this;
|
|
4905
4916
|
/**
|
|
4906
|
-
* @
|
|
4917
|
+
* @since 1.23.0
|
|
4907
4918
|
*
|
|
4908
4919
|
* Attaches event handler `fnFunction` to the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
|
|
4909
4920
|
*
|
|
@@ -4919,7 +4930,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4919
4930
|
/**
|
|
4920
4931
|
* The function to be called when the event occurs
|
|
4921
4932
|
*/
|
|
4922
|
-
fnFunction: (p1:
|
|
4933
|
+
fnFunction: (p1: Table$CustomFilterEvent) => void,
|
|
4923
4934
|
/**
|
|
4924
4935
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4925
4936
|
*/
|
|
@@ -4947,7 +4958,7 @@ declare module "sap/ui/table/Table" {
|
|
|
4947
4958
|
/**
|
|
4948
4959
|
* The function to be called when the event occurs
|
|
4949
4960
|
*/
|
|
4950
|
-
fnFunction: (p1:
|
|
4961
|
+
fnFunction: (p1: Table$FilterEvent) => void,
|
|
4951
4962
|
/**
|
|
4952
4963
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4953
4964
|
*/
|
|
@@ -4970,14 +4981,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4970
4981
|
/**
|
|
4971
4982
|
* The function to be called when the event occurs
|
|
4972
4983
|
*/
|
|
4973
|
-
fnFunction: (p1:
|
|
4984
|
+
fnFunction: (p1: Table$FilterEvent) => void,
|
|
4974
4985
|
/**
|
|
4975
4986
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
4976
4987
|
*/
|
|
4977
4988
|
oListener?: object
|
|
4978
4989
|
): this;
|
|
4979
4990
|
/**
|
|
4980
|
-
* @
|
|
4991
|
+
* @since 1.37.0
|
|
4981
4992
|
*
|
|
4982
4993
|
* Attaches event handler `fnFunction` to the {@link #event:firstVisibleRowChanged firstVisibleRowChanged }
|
|
4983
4994
|
* event of this `sap.ui.table.Table`.
|
|
@@ -4999,16 +5010,14 @@ declare module "sap/ui/table/Table" {
|
|
|
4999
5010
|
/**
|
|
5000
5011
|
* The function to be called when the event occurs
|
|
5001
5012
|
*/
|
|
5002
|
-
fnFunction: (
|
|
5003
|
-
p1: Event<$TableFirstVisibleRowChangedEventParameters>
|
|
5004
|
-
) => void,
|
|
5013
|
+
fnFunction: (p1: Table$FirstVisibleRowChangedEvent) => void,
|
|
5005
5014
|
/**
|
|
5006
5015
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5007
5016
|
*/
|
|
5008
5017
|
oListener?: object
|
|
5009
5018
|
): this;
|
|
5010
5019
|
/**
|
|
5011
|
-
* @
|
|
5020
|
+
* @since 1.37.0
|
|
5012
5021
|
*
|
|
5013
5022
|
* Attaches event handler `fnFunction` to the {@link #event:firstVisibleRowChanged firstVisibleRowChanged }
|
|
5014
5023
|
* event of this `sap.ui.table.Table`.
|
|
@@ -5025,9 +5034,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5025
5034
|
/**
|
|
5026
5035
|
* The function to be called when the event occurs
|
|
5027
5036
|
*/
|
|
5028
|
-
fnFunction: (
|
|
5029
|
-
p1: Event<$TableFirstVisibleRowChangedEventParameters>
|
|
5030
|
-
) => void,
|
|
5037
|
+
fnFunction: (p1: Table$FirstVisibleRowChangedEvent) => void,
|
|
5031
5038
|
/**
|
|
5032
5039
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5033
5040
|
*/
|
|
@@ -5052,7 +5059,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5052
5059
|
/**
|
|
5053
5060
|
* The function to be called when the event occurs
|
|
5054
5061
|
*/
|
|
5055
|
-
fnFunction: (p1:
|
|
5062
|
+
fnFunction: (p1: Table$GroupEvent) => void,
|
|
5056
5063
|
/**
|
|
5057
5064
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5058
5065
|
*/
|
|
@@ -5072,14 +5079,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5072
5079
|
/**
|
|
5073
5080
|
* The function to be called when the event occurs
|
|
5074
5081
|
*/
|
|
5075
|
-
fnFunction: (p1:
|
|
5082
|
+
fnFunction: (p1: Table$GroupEvent) => void,
|
|
5076
5083
|
/**
|
|
5077
5084
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5078
5085
|
*/
|
|
5079
5086
|
oListener?: object
|
|
5080
5087
|
): this;
|
|
5081
5088
|
/**
|
|
5082
|
-
* @
|
|
5089
|
+
* @since 1.60
|
|
5083
5090
|
*
|
|
5084
5091
|
* Attaches event handler `fnFunction` to the {@link #event:paste paste} event of this `sap.ui.table.Table`.
|
|
5085
5092
|
*
|
|
@@ -5100,14 +5107,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5100
5107
|
/**
|
|
5101
5108
|
* The function to be called when the event occurs
|
|
5102
5109
|
*/
|
|
5103
|
-
fnFunction: (p1:
|
|
5110
|
+
fnFunction: (p1: Table$PasteEvent) => void,
|
|
5104
5111
|
/**
|
|
5105
5112
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5106
5113
|
*/
|
|
5107
5114
|
oListener?: object
|
|
5108
5115
|
): this;
|
|
5109
5116
|
/**
|
|
5110
|
-
* @
|
|
5117
|
+
* @since 1.60
|
|
5111
5118
|
*
|
|
5112
5119
|
* Attaches event handler `fnFunction` to the {@link #event:paste paste} event of this `sap.ui.table.Table`.
|
|
5113
5120
|
*
|
|
@@ -5123,7 +5130,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5123
5130
|
/**
|
|
5124
5131
|
* The function to be called when the event occurs
|
|
5125
5132
|
*/
|
|
5126
|
-
fnFunction: (p1:
|
|
5133
|
+
fnFunction: (p1: Table$PasteEvent) => void,
|
|
5127
5134
|
/**
|
|
5128
5135
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5129
5136
|
*/
|
|
@@ -5152,7 +5159,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5152
5159
|
/**
|
|
5153
5160
|
* The function to be called when the event occurs
|
|
5154
5161
|
*/
|
|
5155
|
-
fnFunction: (p1:
|
|
5162
|
+
fnFunction: (p1: Table$RowSelectionChangeEvent) => void,
|
|
5156
5163
|
/**
|
|
5157
5164
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5158
5165
|
*/
|
|
@@ -5176,14 +5183,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5176
5183
|
/**
|
|
5177
5184
|
* The function to be called when the event occurs
|
|
5178
5185
|
*/
|
|
5179
|
-
fnFunction: (p1:
|
|
5186
|
+
fnFunction: (p1: Table$RowSelectionChangeEvent) => void,
|
|
5180
5187
|
/**
|
|
5181
5188
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5182
5189
|
*/
|
|
5183
5190
|
oListener?: object
|
|
5184
5191
|
): this;
|
|
5185
5192
|
/**
|
|
5186
|
-
* @
|
|
5193
|
+
* @since 1.86
|
|
5187
5194
|
*
|
|
5188
5195
|
* Attaches event handler `fnFunction` to the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
|
|
5189
5196
|
*
|
|
@@ -5213,7 +5220,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5213
5220
|
oListener?: object
|
|
5214
5221
|
): this;
|
|
5215
5222
|
/**
|
|
5216
|
-
* @
|
|
5223
|
+
* @since 1.86
|
|
5217
5224
|
*
|
|
5218
5225
|
* Attaches event handler `fnFunction` to the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
|
|
5219
5226
|
*
|
|
@@ -5259,7 +5266,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5259
5266
|
/**
|
|
5260
5267
|
* The function to be called when the event occurs
|
|
5261
5268
|
*/
|
|
5262
|
-
fnFunction: (p1:
|
|
5269
|
+
fnFunction: (p1: Table$SortEvent) => void,
|
|
5263
5270
|
/**
|
|
5264
5271
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5265
5272
|
*/
|
|
@@ -5282,14 +5289,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5282
5289
|
/**
|
|
5283
5290
|
* The function to be called when the event occurs
|
|
5284
5291
|
*/
|
|
5285
|
-
fnFunction: (p1:
|
|
5292
|
+
fnFunction: (p1: Table$SortEvent) => void,
|
|
5286
5293
|
/**
|
|
5287
5294
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.Table` itself
|
|
5288
5295
|
*/
|
|
5289
5296
|
oListener?: object
|
|
5290
5297
|
): this;
|
|
5291
5298
|
/**
|
|
5292
|
-
* @
|
|
5299
|
+
* @experimental - Experimental! Presently implemented to only work with a very limited set of controls
|
|
5293
5300
|
* (e.g. sap.m.Text).
|
|
5294
5301
|
*
|
|
5295
5302
|
* Triggers automatic resizing of a column to the widest content.
|
|
@@ -5341,7 +5348,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5341
5348
|
*/
|
|
5342
5349
|
destroyColumns(): this;
|
|
5343
5350
|
/**
|
|
5344
|
-
* @
|
|
5351
|
+
* @since 1.54
|
|
5345
5352
|
*
|
|
5346
5353
|
* Destroys the contextMenu in the aggregation {@link #getContextMenu contextMenu}.
|
|
5347
5354
|
*
|
|
@@ -5367,7 +5374,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5367
5374
|
*/
|
|
5368
5375
|
destroyNoData(): this;
|
|
5369
5376
|
/**
|
|
5370
|
-
* @
|
|
5377
|
+
* @since 1.64
|
|
5371
5378
|
*
|
|
5372
5379
|
* Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
|
|
5373
5380
|
*
|
|
@@ -5409,7 +5416,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5409
5416
|
*/
|
|
5410
5417
|
destroyToolbar(): this;
|
|
5411
5418
|
/**
|
|
5412
|
-
* @
|
|
5419
|
+
* @since 1.54
|
|
5413
5420
|
*
|
|
5414
5421
|
* Detaches event handler `fnFunction` from the {@link #event:beforeOpenContextMenu beforeOpenContextMenu }
|
|
5415
5422
|
* event of this `sap.ui.table.Table`.
|
|
@@ -5422,16 +5429,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5422
5429
|
/**
|
|
5423
5430
|
* The function to be called, when the event occurs
|
|
5424
5431
|
*/
|
|
5425
|
-
fnFunction: (
|
|
5426
|
-
p1: Event<$TableBeforeOpenContextMenuEventParameters>
|
|
5427
|
-
) => void,
|
|
5432
|
+
fnFunction: (p1: Table$BeforeOpenContextMenuEvent) => void,
|
|
5428
5433
|
/**
|
|
5429
5434
|
* Context object on which the given function had to be called
|
|
5430
5435
|
*/
|
|
5431
5436
|
oListener?: object
|
|
5432
5437
|
): this;
|
|
5433
5438
|
/**
|
|
5434
|
-
* @
|
|
5439
|
+
* @since 1.37.0
|
|
5435
5440
|
*
|
|
5436
5441
|
* Detaches event handler `fnFunction` from the {@link #event:busyStateChanged busyStateChanged} event of
|
|
5437
5442
|
* this `sap.ui.table.Table`.
|
|
@@ -5444,14 +5449,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5444
5449
|
/**
|
|
5445
5450
|
* The function to be called, when the event occurs
|
|
5446
5451
|
*/
|
|
5447
|
-
fnFunction: (p1:
|
|
5452
|
+
fnFunction: (p1: Table$BusyStateChangedEvent) => void,
|
|
5448
5453
|
/**
|
|
5449
5454
|
* Context object on which the given function had to be called
|
|
5450
5455
|
*/
|
|
5451
5456
|
oListener?: object
|
|
5452
5457
|
): this;
|
|
5453
5458
|
/**
|
|
5454
|
-
* @
|
|
5459
|
+
* @since 1.21.0
|
|
5455
5460
|
*
|
|
5456
5461
|
* Detaches event handler `fnFunction` from the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
|
|
5457
5462
|
*
|
|
@@ -5463,14 +5468,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5463
5468
|
/**
|
|
5464
5469
|
* The function to be called, when the event occurs
|
|
5465
5470
|
*/
|
|
5466
|
-
fnFunction: (p1:
|
|
5471
|
+
fnFunction: (p1: Table$CellClickEvent) => void,
|
|
5467
5472
|
/**
|
|
5468
5473
|
* Context object on which the given function had to be called
|
|
5469
5474
|
*/
|
|
5470
5475
|
oListener?: object
|
|
5471
5476
|
): this;
|
|
5472
5477
|
/**
|
|
5473
|
-
* @
|
|
5478
|
+
* @since 1.21.0
|
|
5474
5479
|
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
5475
5480
|
*
|
|
5476
5481
|
* Detaches event handler `fnFunction` from the {@link #event:cellContextmenu cellContextmenu} event of
|
|
@@ -5484,14 +5489,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5484
5489
|
/**
|
|
5485
5490
|
* The function to be called, when the event occurs
|
|
5486
5491
|
*/
|
|
5487
|
-
fnFunction: (p1:
|
|
5492
|
+
fnFunction: (p1: Table$CellContextmenuEvent) => void,
|
|
5488
5493
|
/**
|
|
5489
5494
|
* Context object on which the given function had to be called
|
|
5490
5495
|
*/
|
|
5491
5496
|
oListener?: object
|
|
5492
5497
|
): this;
|
|
5493
5498
|
/**
|
|
5494
|
-
* @
|
|
5499
|
+
* @since 1.21.0
|
|
5495
5500
|
*
|
|
5496
5501
|
* Detaches event handler `fnFunction` from the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
|
|
5497
5502
|
*
|
|
@@ -5503,7 +5508,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5503
5508
|
/**
|
|
5504
5509
|
* The function to be called, when the event occurs
|
|
5505
5510
|
*/
|
|
5506
|
-
fnFunction: (p1:
|
|
5511
|
+
fnFunction: (p1: Table$ColumnFreezeEvent) => void,
|
|
5507
5512
|
/**
|
|
5508
5513
|
* Context object on which the given function had to be called
|
|
5509
5514
|
*/
|
|
@@ -5520,7 +5525,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5520
5525
|
/**
|
|
5521
5526
|
* The function to be called, when the event occurs
|
|
5522
5527
|
*/
|
|
5523
|
-
fnFunction: (p1:
|
|
5528
|
+
fnFunction: (p1: Table$ColumnMoveEvent) => void,
|
|
5524
5529
|
/**
|
|
5525
5530
|
* Context object on which the given function had to be called
|
|
5526
5531
|
*/
|
|
@@ -5537,7 +5542,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5537
5542
|
/**
|
|
5538
5543
|
* The function to be called, when the event occurs
|
|
5539
5544
|
*/
|
|
5540
|
-
fnFunction: (p1:
|
|
5545
|
+
fnFunction: (p1: Table$ColumnResizeEvent) => void,
|
|
5541
5546
|
/**
|
|
5542
5547
|
* Context object on which the given function had to be called
|
|
5543
5548
|
*/
|
|
@@ -5554,7 +5559,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5554
5559
|
/**
|
|
5555
5560
|
* The function to be called, when the event occurs
|
|
5556
5561
|
*/
|
|
5557
|
-
fnFunction: (p1:
|
|
5562
|
+
fnFunction: (p1: Table$ColumnSelectEvent) => void,
|
|
5558
5563
|
/**
|
|
5559
5564
|
* Context object on which the given function had to be called
|
|
5560
5565
|
*/
|
|
@@ -5572,14 +5577,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5572
5577
|
/**
|
|
5573
5578
|
* The function to be called, when the event occurs
|
|
5574
5579
|
*/
|
|
5575
|
-
fnFunction: (p1:
|
|
5580
|
+
fnFunction: (p1: Table$ColumnVisibilityEvent) => void,
|
|
5576
5581
|
/**
|
|
5577
5582
|
* Context object on which the given function had to be called
|
|
5578
5583
|
*/
|
|
5579
5584
|
oListener?: object
|
|
5580
5585
|
): this;
|
|
5581
5586
|
/**
|
|
5582
|
-
* @
|
|
5587
|
+
* @since 1.23.0
|
|
5583
5588
|
*
|
|
5584
5589
|
* Detaches event handler `fnFunction` from the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
|
|
5585
5590
|
*
|
|
@@ -5591,7 +5596,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5591
5596
|
/**
|
|
5592
5597
|
* The function to be called, when the event occurs
|
|
5593
5598
|
*/
|
|
5594
|
-
fnFunction: (p1:
|
|
5599
|
+
fnFunction: (p1: Table$CustomFilterEvent) => void,
|
|
5595
5600
|
/**
|
|
5596
5601
|
* Context object on which the given function had to be called
|
|
5597
5602
|
*/
|
|
@@ -5608,14 +5613,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5608
5613
|
/**
|
|
5609
5614
|
* The function to be called, when the event occurs
|
|
5610
5615
|
*/
|
|
5611
|
-
fnFunction: (p1:
|
|
5616
|
+
fnFunction: (p1: Table$FilterEvent) => void,
|
|
5612
5617
|
/**
|
|
5613
5618
|
* Context object on which the given function had to be called
|
|
5614
5619
|
*/
|
|
5615
5620
|
oListener?: object
|
|
5616
5621
|
): this;
|
|
5617
5622
|
/**
|
|
5618
|
-
* @
|
|
5623
|
+
* @since 1.37.0
|
|
5619
5624
|
*
|
|
5620
5625
|
* Detaches event handler `fnFunction` from the {@link #event:firstVisibleRowChanged firstVisibleRowChanged }
|
|
5621
5626
|
* event of this `sap.ui.table.Table`.
|
|
@@ -5628,9 +5633,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5628
5633
|
/**
|
|
5629
5634
|
* The function to be called, when the event occurs
|
|
5630
5635
|
*/
|
|
5631
|
-
fnFunction: (
|
|
5632
|
-
p1: Event<$TableFirstVisibleRowChangedEventParameters>
|
|
5633
|
-
) => void,
|
|
5636
|
+
fnFunction: (p1: Table$FirstVisibleRowChangedEvent) => void,
|
|
5634
5637
|
/**
|
|
5635
5638
|
* Context object on which the given function had to be called
|
|
5636
5639
|
*/
|
|
@@ -5647,14 +5650,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5647
5650
|
/**
|
|
5648
5651
|
* The function to be called, when the event occurs
|
|
5649
5652
|
*/
|
|
5650
|
-
fnFunction: (p1:
|
|
5653
|
+
fnFunction: (p1: Table$GroupEvent) => void,
|
|
5651
5654
|
/**
|
|
5652
5655
|
* Context object on which the given function had to be called
|
|
5653
5656
|
*/
|
|
5654
5657
|
oListener?: object
|
|
5655
5658
|
): this;
|
|
5656
5659
|
/**
|
|
5657
|
-
* @
|
|
5660
|
+
* @since 1.60
|
|
5658
5661
|
*
|
|
5659
5662
|
* Detaches event handler `fnFunction` from the {@link #event:paste paste} event of this `sap.ui.table.Table`.
|
|
5660
5663
|
*
|
|
@@ -5666,7 +5669,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5666
5669
|
/**
|
|
5667
5670
|
* The function to be called, when the event occurs
|
|
5668
5671
|
*/
|
|
5669
|
-
fnFunction: (p1:
|
|
5672
|
+
fnFunction: (p1: Table$PasteEvent) => void,
|
|
5670
5673
|
/**
|
|
5671
5674
|
* Context object on which the given function had to be called
|
|
5672
5675
|
*/
|
|
@@ -5684,14 +5687,14 @@ declare module "sap/ui/table/Table" {
|
|
|
5684
5687
|
/**
|
|
5685
5688
|
* The function to be called, when the event occurs
|
|
5686
5689
|
*/
|
|
5687
|
-
fnFunction: (p1:
|
|
5690
|
+
fnFunction: (p1: Table$RowSelectionChangeEvent) => void,
|
|
5688
5691
|
/**
|
|
5689
5692
|
* Context object on which the given function had to be called
|
|
5690
5693
|
*/
|
|
5691
5694
|
oListener?: object
|
|
5692
5695
|
): this;
|
|
5693
5696
|
/**
|
|
5694
|
-
* @
|
|
5697
|
+
* @since 1.86
|
|
5695
5698
|
*
|
|
5696
5699
|
* Detaches event handler `fnFunction` from the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
|
|
5697
5700
|
*
|
|
@@ -5720,7 +5723,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5720
5723
|
/**
|
|
5721
5724
|
* The function to be called, when the event occurs
|
|
5722
5725
|
*/
|
|
5723
|
-
fnFunction: (p1:
|
|
5726
|
+
fnFunction: (p1: Table$SortEvent) => void,
|
|
5724
5727
|
/**
|
|
5725
5728
|
* Context object on which the given function had to be called
|
|
5726
5729
|
*/
|
|
@@ -5728,7 +5731,7 @@ declare module "sap/ui/table/Table" {
|
|
|
5728
5731
|
): this;
|
|
5729
5732
|
/**
|
|
5730
5733
|
* @deprecated (since 1.56) - replaced by the `sap.ui.export` library.
|
|
5731
|
-
* @
|
|
5734
|
+
* @experimental - Experimental because the property for the column/cell definitions (sortProperty) could
|
|
5732
5735
|
* change in future.
|
|
5733
5736
|
*
|
|
5734
5737
|
* Creates a new {@link sap.ui.core.util.Export} object and fills row/column information from the table
|
|
@@ -5760,8 +5763,8 @@ declare module "sap/ui/table/Table" {
|
|
|
5760
5763
|
sValue?: string
|
|
5761
5764
|
): void;
|
|
5762
5765
|
/**
|
|
5763
|
-
* @
|
|
5764
|
-
* @
|
|
5766
|
+
* @since 1.54
|
|
5767
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5765
5768
|
*
|
|
5766
5769
|
* Fires event {@link #event:beforeOpenContextMenu beforeOpenContextMenu} to attached listeners.
|
|
5767
5770
|
*
|
|
@@ -5774,11 +5777,11 @@ declare module "sap/ui/table/Table" {
|
|
|
5774
5777
|
/**
|
|
5775
5778
|
* Parameters to pass along with the event
|
|
5776
5779
|
*/
|
|
5777
|
-
mParameters?: $
|
|
5780
|
+
mParameters?: Table$BeforeOpenContextMenuEventParameters
|
|
5778
5781
|
): boolean;
|
|
5779
5782
|
/**
|
|
5780
|
-
* @
|
|
5781
|
-
* @
|
|
5783
|
+
* @since 1.37.0
|
|
5784
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5782
5785
|
*
|
|
5783
5786
|
* Fires event {@link #event:busyStateChanged busyStateChanged} to attached listeners.
|
|
5784
5787
|
*
|
|
@@ -5788,11 +5791,11 @@ declare module "sap/ui/table/Table" {
|
|
|
5788
5791
|
/**
|
|
5789
5792
|
* Parameters to pass along with the event
|
|
5790
5793
|
*/
|
|
5791
|
-
mParameters?: $
|
|
5794
|
+
mParameters?: Table$BusyStateChangedEventParameters
|
|
5792
5795
|
): this;
|
|
5793
5796
|
/**
|
|
5794
|
-
* @
|
|
5795
|
-
* @
|
|
5797
|
+
* @since 1.21.0
|
|
5798
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5796
5799
|
*
|
|
5797
5800
|
* Fires event {@link #event:cellClick cellClick} to attached listeners.
|
|
5798
5801
|
*
|
|
@@ -5805,12 +5808,12 @@ declare module "sap/ui/table/Table" {
|
|
|
5805
5808
|
/**
|
|
5806
5809
|
* Parameters to pass along with the event
|
|
5807
5810
|
*/
|
|
5808
|
-
mParameters?: $
|
|
5811
|
+
mParameters?: Table$CellClickEventParameters
|
|
5809
5812
|
): boolean;
|
|
5810
5813
|
/**
|
|
5811
|
-
* @
|
|
5814
|
+
* @since 1.21.0
|
|
5812
5815
|
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
5813
|
-
* @
|
|
5816
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5814
5817
|
*
|
|
5815
5818
|
* Fires event {@link #event:cellContextmenu cellContextmenu} to attached listeners.
|
|
5816
5819
|
*
|
|
@@ -5823,11 +5826,11 @@ declare module "sap/ui/table/Table" {
|
|
|
5823
5826
|
/**
|
|
5824
5827
|
* Parameters to pass along with the event
|
|
5825
5828
|
*/
|
|
5826
|
-
mParameters?: $
|
|
5829
|
+
mParameters?: Table$CellContextmenuEventParameters
|
|
5827
5830
|
): boolean;
|
|
5828
5831
|
/**
|
|
5829
|
-
* @
|
|
5830
|
-
* @
|
|
5832
|
+
* @since 1.21.0
|
|
5833
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5831
5834
|
*
|
|
5832
5835
|
* Fires event {@link #event:columnFreeze columnFreeze} to attached listeners.
|
|
5833
5836
|
*
|
|
@@ -5840,10 +5843,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5840
5843
|
/**
|
|
5841
5844
|
* Parameters to pass along with the event
|
|
5842
5845
|
*/
|
|
5843
|
-
mParameters?: $
|
|
5846
|
+
mParameters?: Table$ColumnFreezeEventParameters
|
|
5844
5847
|
): boolean;
|
|
5845
5848
|
/**
|
|
5846
|
-
* @
|
|
5849
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5847
5850
|
*
|
|
5848
5851
|
* Fires event {@link #event:columnMove columnMove} to attached listeners.
|
|
5849
5852
|
*
|
|
@@ -5856,10 +5859,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5856
5859
|
/**
|
|
5857
5860
|
* Parameters to pass along with the event
|
|
5858
5861
|
*/
|
|
5859
|
-
mParameters?: $
|
|
5862
|
+
mParameters?: Table$ColumnMoveEventParameters
|
|
5860
5863
|
): boolean;
|
|
5861
5864
|
/**
|
|
5862
|
-
* @
|
|
5865
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5863
5866
|
*
|
|
5864
5867
|
* Fires event {@link #event:columnResize columnResize} to attached listeners.
|
|
5865
5868
|
*
|
|
@@ -5872,10 +5875,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5872
5875
|
/**
|
|
5873
5876
|
* Parameters to pass along with the event
|
|
5874
5877
|
*/
|
|
5875
|
-
mParameters?: $
|
|
5878
|
+
mParameters?: Table$ColumnResizeEventParameters
|
|
5876
5879
|
): boolean;
|
|
5877
5880
|
/**
|
|
5878
|
-
* @
|
|
5881
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5879
5882
|
*
|
|
5880
5883
|
* Fires event {@link #event:columnSelect columnSelect} to attached listeners.
|
|
5881
5884
|
*
|
|
@@ -5888,10 +5891,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5888
5891
|
/**
|
|
5889
5892
|
* Parameters to pass along with the event
|
|
5890
5893
|
*/
|
|
5891
|
-
mParameters?: $
|
|
5894
|
+
mParameters?: Table$ColumnSelectEventParameters
|
|
5892
5895
|
): boolean;
|
|
5893
5896
|
/**
|
|
5894
|
-
* @
|
|
5897
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5895
5898
|
*
|
|
5896
5899
|
* Fires event {@link #event:columnVisibility columnVisibility} to attached listeners.
|
|
5897
5900
|
*
|
|
@@ -5904,11 +5907,11 @@ declare module "sap/ui/table/Table" {
|
|
|
5904
5907
|
/**
|
|
5905
5908
|
* Parameters to pass along with the event
|
|
5906
5909
|
*/
|
|
5907
|
-
mParameters?: $
|
|
5910
|
+
mParameters?: Table$ColumnVisibilityEventParameters
|
|
5908
5911
|
): boolean;
|
|
5909
5912
|
/**
|
|
5910
|
-
* @
|
|
5911
|
-
* @
|
|
5913
|
+
* @since 1.23.0
|
|
5914
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5912
5915
|
*
|
|
5913
5916
|
* Fires event {@link #event:customFilter customFilter} to attached listeners.
|
|
5914
5917
|
*
|
|
@@ -5918,10 +5921,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5918
5921
|
/**
|
|
5919
5922
|
* Parameters to pass along with the event
|
|
5920
5923
|
*/
|
|
5921
|
-
mParameters?: $
|
|
5924
|
+
mParameters?: Table$CustomFilterEventParameters
|
|
5922
5925
|
): this;
|
|
5923
5926
|
/**
|
|
5924
|
-
* @
|
|
5927
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5925
5928
|
*
|
|
5926
5929
|
* Fires event {@link #event:filter filter} to attached listeners.
|
|
5927
5930
|
*
|
|
@@ -5934,11 +5937,11 @@ declare module "sap/ui/table/Table" {
|
|
|
5934
5937
|
/**
|
|
5935
5938
|
* Parameters to pass along with the event
|
|
5936
5939
|
*/
|
|
5937
|
-
mParameters?: $
|
|
5940
|
+
mParameters?: Table$FilterEventParameters
|
|
5938
5941
|
): boolean;
|
|
5939
5942
|
/**
|
|
5940
|
-
* @
|
|
5941
|
-
* @
|
|
5943
|
+
* @since 1.37.0
|
|
5944
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5942
5945
|
*
|
|
5943
5946
|
* Fires event {@link #event:firstVisibleRowChanged firstVisibleRowChanged} to attached listeners.
|
|
5944
5947
|
*
|
|
@@ -5948,10 +5951,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5948
5951
|
/**
|
|
5949
5952
|
* Parameters to pass along with the event
|
|
5950
5953
|
*/
|
|
5951
|
-
mParameters?: $
|
|
5954
|
+
mParameters?: Table$FirstVisibleRowChangedEventParameters
|
|
5952
5955
|
): this;
|
|
5953
5956
|
/**
|
|
5954
|
-
* @
|
|
5957
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5955
5958
|
*
|
|
5956
5959
|
* Fires event {@link #event:group group} to attached listeners.
|
|
5957
5960
|
*
|
|
@@ -5964,11 +5967,11 @@ declare module "sap/ui/table/Table" {
|
|
|
5964
5967
|
/**
|
|
5965
5968
|
* Parameters to pass along with the event
|
|
5966
5969
|
*/
|
|
5967
|
-
mParameters?: $
|
|
5970
|
+
mParameters?: Table$GroupEventParameters
|
|
5968
5971
|
): boolean;
|
|
5969
5972
|
/**
|
|
5970
|
-
* @
|
|
5971
|
-
* @
|
|
5973
|
+
* @since 1.60
|
|
5974
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5972
5975
|
*
|
|
5973
5976
|
* Fires event {@link #event:paste paste} to attached listeners.
|
|
5974
5977
|
*
|
|
@@ -5981,10 +5984,10 @@ declare module "sap/ui/table/Table" {
|
|
|
5981
5984
|
/**
|
|
5982
5985
|
* Parameters to pass along with the event
|
|
5983
5986
|
*/
|
|
5984
|
-
mParameters?: $
|
|
5987
|
+
mParameters?: Table$PasteEventParameters
|
|
5985
5988
|
): boolean;
|
|
5986
5989
|
/**
|
|
5987
|
-
* @
|
|
5990
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
5988
5991
|
*
|
|
5989
5992
|
* Fires event {@link #event:rowSelectionChange rowSelectionChange} to attached listeners.
|
|
5990
5993
|
*
|
|
@@ -5994,11 +5997,11 @@ declare module "sap/ui/table/Table" {
|
|
|
5994
5997
|
/**
|
|
5995
5998
|
* Parameters to pass along with the event
|
|
5996
5999
|
*/
|
|
5997
|
-
mParameters?: $
|
|
6000
|
+
mParameters?: Table$RowSelectionChangeEventParameters
|
|
5998
6001
|
): this;
|
|
5999
6002
|
/**
|
|
6000
|
-
* @
|
|
6001
|
-
* @
|
|
6003
|
+
* @since 1.86
|
|
6004
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6002
6005
|
*
|
|
6003
6006
|
* Fires event {@link #event:rowsUpdated rowsUpdated} to attached listeners.
|
|
6004
6007
|
*
|
|
@@ -6011,7 +6014,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6011
6014
|
mParameters?: object
|
|
6012
6015
|
): this;
|
|
6013
6016
|
/**
|
|
6014
|
-
* @
|
|
6017
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
6015
6018
|
*
|
|
6016
6019
|
* Fires event {@link #event:sort sort} to attached listeners.
|
|
6017
6020
|
*
|
|
@@ -6024,7 +6027,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6024
6027
|
/**
|
|
6025
6028
|
* Parameters to pass along with the event
|
|
6026
6029
|
*/
|
|
6027
|
-
mParameters?: $
|
|
6030
|
+
mParameters?: Table$SortEventParameters
|
|
6028
6031
|
): boolean;
|
|
6029
6032
|
/**
|
|
6030
6033
|
* Sets the focus to the stored focus DOM reference.
|
|
@@ -6049,7 +6052,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6049
6052
|
}
|
|
6050
6053
|
): void;
|
|
6051
6054
|
/**
|
|
6052
|
-
* @
|
|
6055
|
+
* @since 1.52
|
|
6053
6056
|
*
|
|
6054
6057
|
* Gets current value of property {@link #getAlternateRowColors alternateRowColors}.
|
|
6055
6058
|
*
|
|
@@ -6126,7 +6129,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6126
6129
|
iIndex: int
|
|
6127
6130
|
): Context | null;
|
|
6128
6131
|
/**
|
|
6129
|
-
* @
|
|
6132
|
+
* @since 1.54
|
|
6130
6133
|
*
|
|
6131
6134
|
* Gets content of aggregation {@link #getContextMenu contextMenu}.
|
|
6132
6135
|
*
|
|
@@ -6141,7 +6144,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6141
6144
|
*/
|
|
6142
6145
|
getContextMenu(): IContextMenu;
|
|
6143
6146
|
/**
|
|
6144
|
-
* @
|
|
6147
|
+
* @since 1.52
|
|
6145
6148
|
*
|
|
6146
6149
|
* Gets content of aggregation `dragDropConfig` which defines the drag-and-drop configuration.
|
|
6147
6150
|
*
|
|
@@ -6173,7 +6176,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6173
6176
|
*/
|
|
6174
6177
|
getEditable(): boolean;
|
|
6175
6178
|
/**
|
|
6176
|
-
* @
|
|
6179
|
+
* @since 1.27.0
|
|
6177
6180
|
*
|
|
6178
6181
|
* Gets current value of property {@link #getEnableBusyIndicator enableBusyIndicator}.
|
|
6179
6182
|
*
|
|
@@ -6189,7 +6192,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6189
6192
|
*/
|
|
6190
6193
|
getEnableBusyIndicator(): boolean;
|
|
6191
6194
|
/**
|
|
6192
|
-
* @
|
|
6195
|
+
* @since 1.21.0
|
|
6193
6196
|
*
|
|
6194
6197
|
* Gets current value of property {@link #getEnableCellFilter enableCellFilter}.
|
|
6195
6198
|
*
|
|
@@ -6201,7 +6204,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6201
6204
|
*/
|
|
6202
6205
|
getEnableCellFilter(): boolean;
|
|
6203
6206
|
/**
|
|
6204
|
-
* @
|
|
6207
|
+
* @since 1.21.0
|
|
6205
6208
|
*
|
|
6206
6209
|
* Gets current value of property {@link #getEnableColumnFreeze enableColumnFreeze}.
|
|
6207
6210
|
*
|
|
@@ -6223,7 +6226,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6223
6226
|
*/
|
|
6224
6227
|
getEnableColumnReordering(): boolean;
|
|
6225
6228
|
/**
|
|
6226
|
-
* @
|
|
6229
|
+
* @since 1.23.0
|
|
6227
6230
|
*
|
|
6228
6231
|
* Gets current value of property {@link #getEnableCustomFilter enableCustomFilter}.
|
|
6229
6232
|
*
|
|
@@ -6262,7 +6265,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6262
6265
|
*/
|
|
6263
6266
|
getEnableGrouping(): boolean;
|
|
6264
6267
|
/**
|
|
6265
|
-
* @
|
|
6268
|
+
* @since 1.23.0
|
|
6266
6269
|
*
|
|
6267
6270
|
* Gets current value of property {@link #getEnableSelectAll enableSelectAll}.
|
|
6268
6271
|
*
|
|
@@ -6292,7 +6295,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6292
6295
|
*/
|
|
6293
6296
|
getFirstVisibleRow(): int;
|
|
6294
6297
|
/**
|
|
6295
|
-
* @
|
|
6298
|
+
* @since 1.18.7
|
|
6296
6299
|
*
|
|
6297
6300
|
* Gets current value of property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
6298
6301
|
*
|
|
@@ -6342,7 +6345,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6342
6345
|
*/
|
|
6343
6346
|
getFooter(): Control | string;
|
|
6344
6347
|
/**
|
|
6345
|
-
* @
|
|
6348
|
+
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
6346
6349
|
*
|
|
6347
6350
|
* ID of the element which is the current target of the association {@link #getGroupBy groupBy}, or `null`.
|
|
6348
6351
|
*/
|
|
@@ -6380,7 +6383,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6380
6383
|
*/
|
|
6381
6384
|
getNoData(): Control | string;
|
|
6382
6385
|
/**
|
|
6383
|
-
* @
|
|
6386
|
+
* @since 1.64
|
|
6384
6387
|
*
|
|
6385
6388
|
* Gets content of aggregation {@link #getPlugins plugins}.
|
|
6386
6389
|
*
|
|
@@ -6393,7 +6396,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6393
6396
|
*/
|
|
6394
6397
|
getPlugins(): SelectionPlugin[];
|
|
6395
6398
|
/**
|
|
6396
|
-
* @
|
|
6399
|
+
* @since 1.45.0
|
|
6397
6400
|
*
|
|
6398
6401
|
* Gets current value of property {@link #getRowActionCount rowActionCount}.
|
|
6399
6402
|
*
|
|
@@ -6530,7 +6533,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6530
6533
|
*/
|
|
6531
6534
|
getShowNoData(): boolean;
|
|
6532
6535
|
/**
|
|
6533
|
-
* @
|
|
6536
|
+
* @since 1.21.2
|
|
6534
6537
|
*
|
|
6535
6538
|
* Gets current value of property {@link #getShowOverlay showOverlay}.
|
|
6536
6539
|
*
|
|
@@ -6594,7 +6597,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6594
6597
|
*/
|
|
6595
6598
|
getVisibleRowCount(): int;
|
|
6596
6599
|
/**
|
|
6597
|
-
* @
|
|
6600
|
+
* @since 1.9.2
|
|
6598
6601
|
*
|
|
6599
6602
|
* Gets current value of property {@link #getVisibleRowCountMode visibleRowCountMode}.
|
|
6600
6603
|
*
|
|
@@ -6656,7 +6659,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6656
6659
|
oExtension: Control
|
|
6657
6660
|
): int;
|
|
6658
6661
|
/**
|
|
6659
|
-
* @
|
|
6662
|
+
* @since 1.64
|
|
6660
6663
|
*
|
|
6661
6664
|
* Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins plugins}.
|
|
6662
6665
|
* and returns its index if found or -1 otherwise.
|
|
@@ -6716,7 +6719,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6716
6719
|
iIndex: int
|
|
6717
6720
|
): this;
|
|
6718
6721
|
/**
|
|
6719
|
-
* @
|
|
6722
|
+
* @since 1.64
|
|
6720
6723
|
*
|
|
6721
6724
|
* Inserts a plugin into the aggregation {@link #getPlugins plugins}.
|
|
6722
6725
|
*
|
|
@@ -6785,7 +6788,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6785
6788
|
*/
|
|
6786
6789
|
removeAllExtension(): Control[];
|
|
6787
6790
|
/**
|
|
6788
|
-
* @
|
|
6791
|
+
* @since 1.64
|
|
6789
6792
|
*
|
|
6790
6793
|
* Removes all the controls from the aggregation {@link #getPlugins plugins}.
|
|
6791
6794
|
*
|
|
@@ -6836,7 +6839,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6836
6839
|
vExtension: int | string | Control
|
|
6837
6840
|
): Control | null;
|
|
6838
6841
|
/**
|
|
6839
|
-
* @
|
|
6842
|
+
* @since 1.64
|
|
6840
6843
|
*
|
|
6841
6844
|
* Removes a plugin from the aggregation {@link #getPlugins plugins}.
|
|
6842
6845
|
*
|
|
@@ -6884,7 +6887,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6884
6887
|
*/
|
|
6885
6888
|
selectAll(): this;
|
|
6886
6889
|
/**
|
|
6887
|
-
* @
|
|
6890
|
+
* @since 1.52
|
|
6888
6891
|
*
|
|
6889
6892
|
* Sets a new value for property {@link #getAlternateRowColors alternateRowColors}.
|
|
6890
6893
|
*
|
|
@@ -6944,7 +6947,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6944
6947
|
bColumnHeaderVisible?: boolean
|
|
6945
6948
|
): this;
|
|
6946
6949
|
/**
|
|
6947
|
-
* @
|
|
6950
|
+
* @since 1.54
|
|
6948
6951
|
*
|
|
6949
6952
|
* Sets the aggregated {@link #getContextMenu contextMenu}.
|
|
6950
6953
|
*
|
|
@@ -6977,7 +6980,7 @@ declare module "sap/ui/table/Table" {
|
|
|
6977
6980
|
bEditable?: boolean
|
|
6978
6981
|
): this;
|
|
6979
6982
|
/**
|
|
6980
|
-
* @
|
|
6983
|
+
* @since 1.27.0
|
|
6981
6984
|
*
|
|
6982
6985
|
* Sets a new value for property {@link #getEnableBusyIndicator enableBusyIndicator}.
|
|
6983
6986
|
*
|
|
@@ -7000,7 +7003,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7000
7003
|
bEnableBusyIndicator?: boolean
|
|
7001
7004
|
): this;
|
|
7002
7005
|
/**
|
|
7003
|
-
* @
|
|
7006
|
+
* @since 1.21.0
|
|
7004
7007
|
*
|
|
7005
7008
|
* Sets a new value for property {@link #getEnableCellFilter enableCellFilter}.
|
|
7006
7009
|
*
|
|
@@ -7019,7 +7022,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7019
7022
|
bEnableCellFilter?: boolean
|
|
7020
7023
|
): this;
|
|
7021
7024
|
/**
|
|
7022
|
-
* @
|
|
7025
|
+
* @since 1.21.0
|
|
7023
7026
|
*
|
|
7024
7027
|
* Sets a new value for property {@link #getEnableColumnFreeze enableColumnFreeze}.
|
|
7025
7028
|
*
|
|
@@ -7055,7 +7058,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7055
7058
|
bEnableColumnReordering?: boolean
|
|
7056
7059
|
): this;
|
|
7057
7060
|
/**
|
|
7058
|
-
* @
|
|
7061
|
+
* @since 1.23.0
|
|
7059
7062
|
*
|
|
7060
7063
|
* Sets a new value for property {@link #getEnableCustomFilter enableCustomFilter}.
|
|
7061
7064
|
*
|
|
@@ -7108,7 +7111,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7108
7111
|
bEnableGrouping?: boolean
|
|
7109
7112
|
): this;
|
|
7110
7113
|
/**
|
|
7111
|
-
* @
|
|
7114
|
+
* @since 1.23.0
|
|
7112
7115
|
*
|
|
7113
7116
|
* Sets a new value for property {@link #getEnableSelectAll enableSelectAll}.
|
|
7114
7117
|
*
|
|
@@ -7145,7 +7148,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7145
7148
|
iFirstVisibleRow?: int
|
|
7146
7149
|
): this;
|
|
7147
7150
|
/**
|
|
7148
|
-
* @
|
|
7151
|
+
* @since 1.18.7
|
|
7149
7152
|
*
|
|
7150
7153
|
* Sets a new value for property {@link #getFixedBottomRowCount fixedBottomRowCount}.
|
|
7151
7154
|
*
|
|
@@ -7221,7 +7224,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7221
7224
|
vFooter: Control | string
|
|
7222
7225
|
): this;
|
|
7223
7226
|
/**
|
|
7224
|
-
* @
|
|
7227
|
+
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
7225
7228
|
*
|
|
7226
7229
|
* Sets the associated {@link #getGroupBy groupBy}.
|
|
7227
7230
|
*
|
|
@@ -7284,7 +7287,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7284
7287
|
vNoData: Control | string
|
|
7285
7288
|
): this;
|
|
7286
7289
|
/**
|
|
7287
|
-
* @
|
|
7290
|
+
* @since 1.45.0
|
|
7288
7291
|
*
|
|
7289
7292
|
* Sets a new value for property {@link #getRowActionCount rowActionCount}.
|
|
7290
7293
|
*
|
|
@@ -7446,7 +7449,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7446
7449
|
bShowNoData?: boolean
|
|
7447
7450
|
): this;
|
|
7448
7451
|
/**
|
|
7449
|
-
* @
|
|
7452
|
+
* @since 1.21.2
|
|
7450
7453
|
*
|
|
7451
7454
|
* Sets a new value for property {@link #getShowOverlay showOverlay}.
|
|
7452
7455
|
*
|
|
@@ -7538,7 +7541,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7538
7541
|
iVisibleRowCount?: int
|
|
7539
7542
|
): this;
|
|
7540
7543
|
/**
|
|
7541
|
-
* @
|
|
7544
|
+
* @since 1.9.2
|
|
7542
7545
|
*
|
|
7543
7546
|
* Sets a new value for property {@link #getVisibleRowCountMode visibleRowCountMode}.
|
|
7544
7547
|
*
|
|
@@ -7619,7 +7622,6 @@ declare module "sap/ui/table/Table" {
|
|
|
7619
7622
|
*/
|
|
7620
7623
|
unbindRows(): this;
|
|
7621
7624
|
}
|
|
7622
|
-
export default Table;
|
|
7623
7625
|
|
|
7624
7626
|
export interface $TableSettings extends $ControlSettings {
|
|
7625
7627
|
/**
|
|
@@ -7775,7 +7777,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7775
7777
|
showNoData?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7776
7778
|
|
|
7777
7779
|
/**
|
|
7778
|
-
* @
|
|
7780
|
+
* @since 1.9.2
|
|
7779
7781
|
*
|
|
7780
7782
|
* Defines how the table handles the visible rows in the table.
|
|
7781
7783
|
*
|
|
@@ -7824,7 +7826,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7824
7826
|
fixedRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
7825
7827
|
|
|
7826
7828
|
/**
|
|
7827
|
-
* @
|
|
7829
|
+
* @since 1.18.7
|
|
7828
7830
|
*
|
|
7829
7831
|
* Number of rows that are fix on the bottom. When you use a vertical scrollbar, only the rows which are
|
|
7830
7832
|
* not fixed, will scroll.
|
|
@@ -7834,21 +7836,21 @@ declare module "sap/ui/table/Table" {
|
|
|
7834
7836
|
fixedBottomRowCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
7835
7837
|
|
|
7836
7838
|
/**
|
|
7837
|
-
* @
|
|
7839
|
+
* @since 1.21.0
|
|
7838
7840
|
*
|
|
7839
7841
|
* Flag whether to show or hide the column menu item to freeze or unfreeze a column.
|
|
7840
7842
|
*/
|
|
7841
7843
|
enableColumnFreeze?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7842
7844
|
|
|
7843
7845
|
/**
|
|
7844
|
-
* @
|
|
7846
|
+
* @since 1.21.0
|
|
7845
7847
|
*
|
|
7846
7848
|
* Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
|
|
7847
7849
|
*/
|
|
7848
7850
|
enableCellFilter?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7849
7851
|
|
|
7850
7852
|
/**
|
|
7851
|
-
* @
|
|
7853
|
+
* @since 1.21.2
|
|
7852
7854
|
*
|
|
7853
7855
|
* Setting this property to true will show an overlay on top of the Table content and users cannot click
|
|
7854
7856
|
* anymore on the Table content.
|
|
@@ -7856,7 +7858,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7856
7858
|
showOverlay?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7857
7859
|
|
|
7858
7860
|
/**
|
|
7859
|
-
* @
|
|
7861
|
+
* @since 1.23.0
|
|
7860
7862
|
*
|
|
7861
7863
|
* Specifies if a select all button should be displayed in the top left corner. This button is only displayed
|
|
7862
7864
|
* if the row selector is visible and the selection mode is set to any kind of multi selection.
|
|
@@ -7864,7 +7866,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7864
7866
|
enableSelectAll?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7865
7867
|
|
|
7866
7868
|
/**
|
|
7867
|
-
* @
|
|
7869
|
+
* @since 1.23.0
|
|
7868
7870
|
*
|
|
7869
7871
|
* Set this parameter to true to implement your own filter behaviour. Instead of the filter input box a
|
|
7870
7872
|
* button will be rendered for which' press event (customFilter) you can register an event handler.
|
|
@@ -7872,7 +7874,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7872
7874
|
enableCustomFilter?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7873
7875
|
|
|
7874
7876
|
/**
|
|
7875
|
-
* @
|
|
7877
|
+
* @since 1.27.0
|
|
7876
7878
|
*
|
|
7877
7879
|
* If set to `true`, the table changes its busy state, resulting in showing or hiding the busy indicator.
|
|
7878
7880
|
* The table will switch to busy as soon as data is retrieved to be displayed in the currently visible rows.
|
|
@@ -7883,7 +7885,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7883
7885
|
enableBusyIndicator?: boolean | PropertyBindingInfo | `{${string}}`;
|
|
7884
7886
|
|
|
7885
7887
|
/**
|
|
7886
|
-
* @
|
|
7888
|
+
* @since 1.45.0
|
|
7887
7889
|
*
|
|
7888
7890
|
* Number of row actions made visible which determines the width of the row action column. The values `0`,
|
|
7889
7891
|
* `1` and `2` are possible.
|
|
@@ -7891,7 +7893,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7891
7893
|
rowActionCount?: int | PropertyBindingInfo | `{${string}}`;
|
|
7892
7894
|
|
|
7893
7895
|
/**
|
|
7894
|
-
* @
|
|
7896
|
+
* @since 1.52
|
|
7895
7897
|
*
|
|
7896
7898
|
* Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
|
|
7897
7899
|
*/
|
|
@@ -7973,7 +7975,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7973
7975
|
rowSettingsTemplate?: RowSettings;
|
|
7974
7976
|
|
|
7975
7977
|
/**
|
|
7976
|
-
* @
|
|
7978
|
+
* @since 1.54
|
|
7977
7979
|
*
|
|
7978
7980
|
* Defines the context menu for the table.
|
|
7979
7981
|
*
|
|
@@ -7987,7 +7989,7 @@ declare module "sap/ui/table/Table" {
|
|
|
7987
7989
|
contextMenu?: IContextMenu;
|
|
7988
7990
|
|
|
7989
7991
|
/**
|
|
7990
|
-
* @
|
|
7992
|
+
* @since 1.64
|
|
7991
7993
|
*
|
|
7992
7994
|
* Plugin section of the table. Multiple plugins are possible, but always only **one** of a certain type.
|
|
7993
7995
|
*
|
|
@@ -8003,7 +8005,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8003
8005
|
| `{${string}}`;
|
|
8004
8006
|
|
|
8005
8007
|
/**
|
|
8006
|
-
* @
|
|
8008
|
+
* @experimental (since 1.28) - This feature has a limited functionality.
|
|
8007
8009
|
*
|
|
8008
8010
|
* The column by which the table is grouped. Grouping will only be performed if `enableGrouping` is set
|
|
8009
8011
|
* to `true`. Setting `groupBy` in the view does not work and throws an error. It can only be set if the
|
|
@@ -8023,23 +8025,23 @@ declare module "sap/ui/table/Table" {
|
|
|
8023
8025
|
* **Note:** If a selection plugin is applied to the table, this event won't be fired.
|
|
8024
8026
|
*/
|
|
8025
8027
|
rowSelectionChange?: (
|
|
8026
|
-
oEvent: Event
|
|
8028
|
+
oEvent: Event<Table$RowSelectionChangeEventParameters>
|
|
8027
8029
|
) => void;
|
|
8028
8030
|
|
|
8029
8031
|
/**
|
|
8030
8032
|
* fired when a column of the table has been selected
|
|
8031
8033
|
*/
|
|
8032
|
-
columnSelect?: (oEvent: Event
|
|
8034
|
+
columnSelect?: (oEvent: Event<Table$ColumnSelectEventParameters>) => void;
|
|
8033
8035
|
|
|
8034
8036
|
/**
|
|
8035
8037
|
* fired when a table column is resized.
|
|
8036
8038
|
*/
|
|
8037
|
-
columnResize?: (oEvent: Event
|
|
8039
|
+
columnResize?: (oEvent: Event<Table$ColumnResizeEventParameters>) => void;
|
|
8038
8040
|
|
|
8039
8041
|
/**
|
|
8040
8042
|
* fired when a table column is moved.
|
|
8041
8043
|
*/
|
|
8042
|
-
columnMove?: (oEvent: Event
|
|
8044
|
+
columnMove?: (oEvent: Event<Table$ColumnMoveEventParameters>) => void;
|
|
8043
8045
|
|
|
8044
8046
|
/**
|
|
8045
8047
|
* This event is fired before a sort order is applied to a column, if the table is sorted via {@link sap.ui.table.Table#sort }
|
|
@@ -8047,7 +8049,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8047
8049
|
*
|
|
8048
8050
|
* Sorters that are directly applied to the table binding will not fire this event.
|
|
8049
8051
|
*/
|
|
8050
|
-
sort?: (oEvent: Event
|
|
8052
|
+
sort?: (oEvent: Event<Table$SortEventParameters>) => void;
|
|
8051
8053
|
|
|
8052
8054
|
/**
|
|
8053
8055
|
* This event is fired before a filter is applied to a column, if the table is filtered via {@link sap.ui.table.Table#filter }
|
|
@@ -8055,90 +8057,90 @@ declare module "sap/ui/table/Table" {
|
|
|
8055
8057
|
*
|
|
8056
8058
|
* Filters that are directly applied to the table binding will not fire this event.
|
|
8057
8059
|
*/
|
|
8058
|
-
filter?: (oEvent: Event
|
|
8060
|
+
filter?: (oEvent: Event<Table$FilterEventParameters>) => void;
|
|
8059
8061
|
|
|
8060
8062
|
/**
|
|
8061
8063
|
* fired when the table is grouped (experimental!).
|
|
8062
8064
|
*/
|
|
8063
|
-
group?: (oEvent: Event
|
|
8065
|
+
group?: (oEvent: Event<Table$GroupEventParameters>) => void;
|
|
8064
8066
|
|
|
8065
8067
|
/**
|
|
8066
8068
|
* fired when the visibility of a table column is changed.
|
|
8067
8069
|
*/
|
|
8068
8070
|
columnVisibility?: (
|
|
8069
|
-
oEvent: Event
|
|
8071
|
+
oEvent: Event<Table$ColumnVisibilityEventParameters>
|
|
8070
8072
|
) => void;
|
|
8071
8073
|
|
|
8072
8074
|
/**
|
|
8073
|
-
* @
|
|
8075
|
+
* @since 1.21.0
|
|
8074
8076
|
*
|
|
8075
8077
|
* fired when the user clicks a cell of the table (experimental!).
|
|
8076
8078
|
*/
|
|
8077
|
-
cellClick?: (oEvent: Event
|
|
8079
|
+
cellClick?: (oEvent: Event<Table$CellClickEventParameters>) => void;
|
|
8078
8080
|
|
|
8079
8081
|
/**
|
|
8080
|
-
* @
|
|
8082
|
+
* @since 1.21.0
|
|
8081
8083
|
* @deprecated (since 1.54) - replaced by `beforeOpenContextMenu`.
|
|
8082
8084
|
*
|
|
8083
8085
|
* fired when the user clicks a cell of the table.
|
|
8084
8086
|
*/
|
|
8085
8087
|
cellContextmenu?: (
|
|
8086
|
-
oEvent: Event
|
|
8088
|
+
oEvent: Event<Table$CellContextmenuEventParameters>
|
|
8087
8089
|
) => void;
|
|
8088
8090
|
|
|
8089
8091
|
/**
|
|
8090
|
-
* @
|
|
8092
|
+
* @since 1.54
|
|
8091
8093
|
*
|
|
8092
8094
|
* Fired when the user requests the context menu for a table cell.
|
|
8093
8095
|
*/
|
|
8094
8096
|
beforeOpenContextMenu?: (
|
|
8095
|
-
oEvent: Event
|
|
8097
|
+
oEvent: Event<Table$BeforeOpenContextMenuEventParameters>
|
|
8096
8098
|
) => void;
|
|
8097
8099
|
|
|
8098
8100
|
/**
|
|
8099
|
-
* @
|
|
8101
|
+
* @since 1.21.0
|
|
8100
8102
|
*
|
|
8101
8103
|
* fired when a column of the table should be freezed
|
|
8102
8104
|
*/
|
|
8103
|
-
columnFreeze?: (oEvent: Event
|
|
8105
|
+
columnFreeze?: (oEvent: Event<Table$ColumnFreezeEventParameters>) => void;
|
|
8104
8106
|
|
|
8105
8107
|
/**
|
|
8106
|
-
* @
|
|
8108
|
+
* @since 1.23.0
|
|
8107
8109
|
*
|
|
8108
8110
|
* This event is triggered when the custom filter item of the column menu is pressed. The column on which
|
|
8109
8111
|
* the event was triggered is passed as parameter.
|
|
8110
8112
|
*/
|
|
8111
|
-
customFilter?: (oEvent: Event
|
|
8113
|
+
customFilter?: (oEvent: Event<Table$CustomFilterEventParameters>) => void;
|
|
8112
8114
|
|
|
8113
8115
|
/**
|
|
8114
|
-
* @
|
|
8116
|
+
* @since 1.37.0
|
|
8115
8117
|
*
|
|
8116
8118
|
* This event gets fired when the first visible row is changed. It should only be used by composite controls.
|
|
8117
8119
|
* The event even is fired when setFirstVisibleRow is called programmatically.
|
|
8118
8120
|
*/
|
|
8119
8121
|
firstVisibleRowChanged?: (
|
|
8120
|
-
oEvent: Event
|
|
8122
|
+
oEvent: Event<Table$FirstVisibleRowChangedEventParameters>
|
|
8121
8123
|
) => void;
|
|
8122
8124
|
|
|
8123
8125
|
/**
|
|
8124
|
-
* @
|
|
8126
|
+
* @since 1.37.0
|
|
8125
8127
|
*
|
|
8126
8128
|
* This event gets fired when the busy state of the table changes. It should only be used by composite controls.
|
|
8127
8129
|
*/
|
|
8128
8130
|
busyStateChanged?: (
|
|
8129
|
-
oEvent: Event
|
|
8131
|
+
oEvent: Event<Table$BusyStateChangedEventParameters>
|
|
8130
8132
|
) => void;
|
|
8131
8133
|
|
|
8132
8134
|
/**
|
|
8133
|
-
* @
|
|
8135
|
+
* @since 1.60
|
|
8134
8136
|
*
|
|
8135
8137
|
* This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
|
|
8136
8138
|
* with the standard keyboard shortcut, if the focus is inside the table.
|
|
8137
8139
|
*/
|
|
8138
|
-
paste?: (oEvent: Event
|
|
8140
|
+
paste?: (oEvent: Event<Table$PasteEventParameters>) => void;
|
|
8139
8141
|
|
|
8140
8142
|
/**
|
|
8141
|
-
* @
|
|
8143
|
+
* @since 1.86
|
|
8142
8144
|
*
|
|
8143
8145
|
* This event is fired after the table rows have been updated due to rendering, a model update, or a user
|
|
8144
8146
|
* interaction, for example.
|
|
@@ -8148,7 +8150,7 @@ declare module "sap/ui/table/Table" {
|
|
|
8148
8150
|
rowsUpdated?: (oEvent: Event) => void;
|
|
8149
8151
|
}
|
|
8150
8152
|
|
|
8151
|
-
export interface $
|
|
8153
|
+
export interface Table$BeforeOpenContextMenuEventParameters {
|
|
8152
8154
|
/**
|
|
8153
8155
|
* Row index where the context menu opens.
|
|
8154
8156
|
*/
|
|
@@ -8165,14 +8167,30 @@ declare module "sap/ui/table/Table" {
|
|
|
8165
8167
|
contextMenu?: IContextMenu;
|
|
8166
8168
|
}
|
|
8167
8169
|
|
|
8168
|
-
|
|
8170
|
+
/**
|
|
8171
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$BeforeOpenContextMenuEventParameters'
|
|
8172
|
+
* in 1.115.1 and any later releases.
|
|
8173
|
+
*/
|
|
8174
|
+
export type $TableBeforeOpenContextMenuEventParameters = Table$BeforeOpenContextMenuEventParameters;
|
|
8175
|
+
|
|
8176
|
+
export type Table$BeforeOpenContextMenuEvent = Event<Table$BeforeOpenContextMenuEventParameters>;
|
|
8177
|
+
|
|
8178
|
+
export interface Table$BusyStateChangedEventParameters {
|
|
8169
8179
|
/**
|
|
8170
8180
|
* busy state
|
|
8171
8181
|
*/
|
|
8172
8182
|
busy?: boolean;
|
|
8173
8183
|
}
|
|
8174
8184
|
|
|
8175
|
-
|
|
8185
|
+
/**
|
|
8186
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$BusyStateChangedEventParameters'
|
|
8187
|
+
* in 1.115.1 and any later releases.
|
|
8188
|
+
*/
|
|
8189
|
+
export type $TableBusyStateChangedEventParameters = Table$BusyStateChangedEventParameters;
|
|
8190
|
+
|
|
8191
|
+
export type Table$BusyStateChangedEvent = Event<Table$BusyStateChangedEventParameters>;
|
|
8192
|
+
|
|
8193
|
+
export interface Table$CellClickEventParameters {
|
|
8176
8194
|
/**
|
|
8177
8195
|
* The control of the cell.
|
|
8178
8196
|
*/
|
|
@@ -8205,7 +8223,15 @@ declare module "sap/ui/table/Table" {
|
|
|
8205
8223
|
rowBindingContext?: Context;
|
|
8206
8224
|
}
|
|
8207
8225
|
|
|
8208
|
-
|
|
8226
|
+
/**
|
|
8227
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$CellClickEventParameters'
|
|
8228
|
+
* in 1.115.1 and any later releases.
|
|
8229
|
+
*/
|
|
8230
|
+
export type $TableCellClickEventParameters = Table$CellClickEventParameters;
|
|
8231
|
+
|
|
8232
|
+
export type Table$CellClickEvent = Event<Table$CellClickEventParameters>;
|
|
8233
|
+
|
|
8234
|
+
export interface Table$CellContextmenuEventParameters {
|
|
8209
8235
|
/**
|
|
8210
8236
|
* The control of the cell.
|
|
8211
8237
|
*/
|
|
@@ -8238,14 +8264,30 @@ declare module "sap/ui/table/Table" {
|
|
|
8238
8264
|
rowBindingContext?: Context;
|
|
8239
8265
|
}
|
|
8240
8266
|
|
|
8241
|
-
|
|
8267
|
+
/**
|
|
8268
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$CellContextmenuEventParameters'
|
|
8269
|
+
* in 1.115.1 and any later releases.
|
|
8270
|
+
*/
|
|
8271
|
+
export type $TableCellContextmenuEventParameters = Table$CellContextmenuEventParameters;
|
|
8272
|
+
|
|
8273
|
+
export type Table$CellContextmenuEvent = Event<Table$CellContextmenuEventParameters>;
|
|
8274
|
+
|
|
8275
|
+
export interface Table$ColumnFreezeEventParameters {
|
|
8242
8276
|
/**
|
|
8243
8277
|
* reference to the column to freeze
|
|
8244
8278
|
*/
|
|
8245
8279
|
column?: Column;
|
|
8246
8280
|
}
|
|
8247
8281
|
|
|
8248
|
-
|
|
8282
|
+
/**
|
|
8283
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnFreezeEventParameters'
|
|
8284
|
+
* in 1.115.1 and any later releases.
|
|
8285
|
+
*/
|
|
8286
|
+
export type $TableColumnFreezeEventParameters = Table$ColumnFreezeEventParameters;
|
|
8287
|
+
|
|
8288
|
+
export type Table$ColumnFreezeEvent = Event<Table$ColumnFreezeEventParameters>;
|
|
8289
|
+
|
|
8290
|
+
export interface Table$ColumnMoveEventParameters {
|
|
8249
8291
|
/**
|
|
8250
8292
|
* moved column.
|
|
8251
8293
|
*/
|
|
@@ -8257,7 +8299,15 @@ declare module "sap/ui/table/Table" {
|
|
|
8257
8299
|
newPos?: int;
|
|
8258
8300
|
}
|
|
8259
8301
|
|
|
8260
|
-
|
|
8302
|
+
/**
|
|
8303
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnMoveEventParameters'
|
|
8304
|
+
* in 1.115.1 and any later releases.
|
|
8305
|
+
*/
|
|
8306
|
+
export type $TableColumnMoveEventParameters = Table$ColumnMoveEventParameters;
|
|
8307
|
+
|
|
8308
|
+
export type Table$ColumnMoveEvent = Event<Table$ColumnMoveEventParameters>;
|
|
8309
|
+
|
|
8310
|
+
export interface Table$ColumnResizeEventParameters {
|
|
8261
8311
|
/**
|
|
8262
8312
|
* resized column.
|
|
8263
8313
|
*/
|
|
@@ -8269,14 +8319,30 @@ declare module "sap/ui/table/Table" {
|
|
|
8269
8319
|
width?: CSSSize;
|
|
8270
8320
|
}
|
|
8271
8321
|
|
|
8272
|
-
|
|
8322
|
+
/**
|
|
8323
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnResizeEventParameters'
|
|
8324
|
+
* in 1.115.1 and any later releases.
|
|
8325
|
+
*/
|
|
8326
|
+
export type $TableColumnResizeEventParameters = Table$ColumnResizeEventParameters;
|
|
8327
|
+
|
|
8328
|
+
export type Table$ColumnResizeEvent = Event<Table$ColumnResizeEventParameters>;
|
|
8329
|
+
|
|
8330
|
+
export interface Table$ColumnSelectEventParameters {
|
|
8273
8331
|
/**
|
|
8274
8332
|
* reference to the selected column
|
|
8275
8333
|
*/
|
|
8276
8334
|
column?: Column;
|
|
8277
8335
|
}
|
|
8278
8336
|
|
|
8279
|
-
|
|
8337
|
+
/**
|
|
8338
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnSelectEventParameters'
|
|
8339
|
+
* in 1.115.1 and any later releases.
|
|
8340
|
+
*/
|
|
8341
|
+
export type $TableColumnSelectEventParameters = Table$ColumnSelectEventParameters;
|
|
8342
|
+
|
|
8343
|
+
export type Table$ColumnSelectEvent = Event<Table$ColumnSelectEventParameters>;
|
|
8344
|
+
|
|
8345
|
+
export interface Table$ColumnVisibilityEventParameters {
|
|
8280
8346
|
/**
|
|
8281
8347
|
* affected column.
|
|
8282
8348
|
*/
|
|
@@ -8288,7 +8354,15 @@ declare module "sap/ui/table/Table" {
|
|
|
8288
8354
|
newVisible?: boolean;
|
|
8289
8355
|
}
|
|
8290
8356
|
|
|
8291
|
-
|
|
8357
|
+
/**
|
|
8358
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$ColumnVisibilityEventParameters'
|
|
8359
|
+
* in 1.115.1 and any later releases.
|
|
8360
|
+
*/
|
|
8361
|
+
export type $TableColumnVisibilityEventParameters = Table$ColumnVisibilityEventParameters;
|
|
8362
|
+
|
|
8363
|
+
export type Table$ColumnVisibilityEvent = Event<Table$ColumnVisibilityEventParameters>;
|
|
8364
|
+
|
|
8365
|
+
export interface Table$CustomFilterEventParameters {
|
|
8292
8366
|
/**
|
|
8293
8367
|
* The column instance on which the custom filter button was pressed.
|
|
8294
8368
|
*/
|
|
@@ -8300,7 +8374,15 @@ declare module "sap/ui/table/Table" {
|
|
|
8300
8374
|
value?: string;
|
|
8301
8375
|
}
|
|
8302
8376
|
|
|
8303
|
-
|
|
8377
|
+
/**
|
|
8378
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$CustomFilterEventParameters'
|
|
8379
|
+
* in 1.115.1 and any later releases.
|
|
8380
|
+
*/
|
|
8381
|
+
export type $TableCustomFilterEventParameters = Table$CustomFilterEventParameters;
|
|
8382
|
+
|
|
8383
|
+
export type Table$CustomFilterEvent = Event<Table$CustomFilterEventParameters>;
|
|
8384
|
+
|
|
8385
|
+
export interface Table$FilterEventParameters {
|
|
8304
8386
|
/**
|
|
8305
8387
|
* filtered column.
|
|
8306
8388
|
*/
|
|
@@ -8312,21 +8394,45 @@ declare module "sap/ui/table/Table" {
|
|
|
8312
8394
|
value?: string;
|
|
8313
8395
|
}
|
|
8314
8396
|
|
|
8315
|
-
|
|
8397
|
+
/**
|
|
8398
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$FilterEventParameters'
|
|
8399
|
+
* in 1.115.1 and any later releases.
|
|
8400
|
+
*/
|
|
8401
|
+
export type $TableFilterEventParameters = Table$FilterEventParameters;
|
|
8402
|
+
|
|
8403
|
+
export type Table$FilterEvent = Event<Table$FilterEventParameters>;
|
|
8404
|
+
|
|
8405
|
+
export interface Table$FirstVisibleRowChangedEventParameters {
|
|
8316
8406
|
/**
|
|
8317
8407
|
* First visible row
|
|
8318
8408
|
*/
|
|
8319
8409
|
firstVisibleRow?: int;
|
|
8320
8410
|
}
|
|
8321
8411
|
|
|
8322
|
-
|
|
8412
|
+
/**
|
|
8413
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$FirstVisibleRowChangedEventParameters'
|
|
8414
|
+
* in 1.115.1 and any later releases.
|
|
8415
|
+
*/
|
|
8416
|
+
export type $TableFirstVisibleRowChangedEventParameters = Table$FirstVisibleRowChangedEventParameters;
|
|
8417
|
+
|
|
8418
|
+
export type Table$FirstVisibleRowChangedEvent = Event<Table$FirstVisibleRowChangedEventParameters>;
|
|
8419
|
+
|
|
8420
|
+
export interface Table$GroupEventParameters {
|
|
8323
8421
|
/**
|
|
8324
8422
|
* grouped column.
|
|
8325
8423
|
*/
|
|
8326
8424
|
column?: Column;
|
|
8327
8425
|
}
|
|
8328
8426
|
|
|
8329
|
-
|
|
8427
|
+
/**
|
|
8428
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$GroupEventParameters'
|
|
8429
|
+
* in 1.115.1 and any later releases.
|
|
8430
|
+
*/
|
|
8431
|
+
export type $TableGroupEventParameters = Table$GroupEventParameters;
|
|
8432
|
+
|
|
8433
|
+
export type Table$GroupEvent = Event<Table$GroupEventParameters>;
|
|
8434
|
+
|
|
8435
|
+
export interface Table$PasteEventParameters {
|
|
8330
8436
|
/**
|
|
8331
8437
|
* 2D array of strings with data from the clipboard. The first dimension represents the rows, and the second
|
|
8332
8438
|
* dimension represents the cells of the tabular data.
|
|
@@ -8334,7 +8440,15 @@ declare module "sap/ui/table/Table" {
|
|
|
8334
8440
|
data?: string[][];
|
|
8335
8441
|
}
|
|
8336
8442
|
|
|
8337
|
-
|
|
8443
|
+
/**
|
|
8444
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$PasteEventParameters'
|
|
8445
|
+
* in 1.115.1 and any later releases.
|
|
8446
|
+
*/
|
|
8447
|
+
export type $TablePasteEventParameters = Table$PasteEventParameters;
|
|
8448
|
+
|
|
8449
|
+
export type Table$PasteEvent = Event<Table$PasteEventParameters>;
|
|
8450
|
+
|
|
8451
|
+
export interface Table$RowSelectionChangeEventParameters {
|
|
8338
8452
|
/**
|
|
8339
8453
|
* row index which has been clicked so that the selection has been changed (either selected or deselected)
|
|
8340
8454
|
*/
|
|
@@ -8362,9 +8476,25 @@ declare module "sap/ui/table/Table" {
|
|
|
8362
8476
|
userInteraction?: boolean;
|
|
8363
8477
|
}
|
|
8364
8478
|
|
|
8365
|
-
|
|
8479
|
+
/**
|
|
8480
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$RowSelectionChangeEventParameters'
|
|
8481
|
+
* in 1.115.1 and any later releases.
|
|
8482
|
+
*/
|
|
8483
|
+
export type $TableRowSelectionChangeEventParameters = Table$RowSelectionChangeEventParameters;
|
|
8484
|
+
|
|
8485
|
+
export type Table$RowSelectionChangeEvent = Event<Table$RowSelectionChangeEventParameters>;
|
|
8486
|
+
|
|
8487
|
+
export interface Table$RowsUpdatedEventParameters {}
|
|
8488
|
+
|
|
8489
|
+
/**
|
|
8490
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$RowsUpdatedEventParameters'
|
|
8491
|
+
* in 1.115.1 and any later releases.
|
|
8492
|
+
*/
|
|
8493
|
+
export type $TableRowsUpdatedEventParameters = Table$RowsUpdatedEventParameters;
|
|
8494
|
+
|
|
8495
|
+
export type Table$RowsUpdatedEvent = Event<Table$RowsUpdatedEventParameters>;
|
|
8366
8496
|
|
|
8367
|
-
export interface $
|
|
8497
|
+
export interface Table$SortEventParameters {
|
|
8368
8498
|
/**
|
|
8369
8499
|
* sorted column.
|
|
8370
8500
|
*/
|
|
@@ -8380,6 +8510,14 @@ declare module "sap/ui/table/Table" {
|
|
|
8380
8510
|
*/
|
|
8381
8511
|
columnAdded?: boolean;
|
|
8382
8512
|
}
|
|
8513
|
+
|
|
8514
|
+
/**
|
|
8515
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'Table$SortEventParameters'
|
|
8516
|
+
* in 1.115.1 and any later releases.
|
|
8517
|
+
*/
|
|
8518
|
+
export type $TableSortEventParameters = Table$SortEventParameters;
|
|
8519
|
+
|
|
8520
|
+
export type Table$SortEvent = Event<Table$SortEventParameters>;
|
|
8383
8521
|
}
|
|
8384
8522
|
|
|
8385
8523
|
declare module "sap/ui/table/TablePersoController" {
|
|
@@ -8398,12 +8536,12 @@ declare module "sap/ui/table/TablePersoController" {
|
|
|
8398
8536
|
import Table from "sap/ui/table/Table";
|
|
8399
8537
|
|
|
8400
8538
|
/**
|
|
8401
|
-
* @
|
|
8539
|
+
* @since 1.21.1
|
|
8402
8540
|
* @deprecated (since 1.115) - Please use the {@link sap.m.p13n.Engine Engine} for personalization instead.
|
|
8403
8541
|
*
|
|
8404
8542
|
* The TablePersoController can be used to connect a table with a persistence service.
|
|
8405
8543
|
*/
|
|
8406
|
-
class TablePersoController extends ManagedObject {
|
|
8544
|
+
export default class TablePersoController extends ManagedObject {
|
|
8407
8545
|
/**
|
|
8408
8546
|
* Constructor for a new TablePersoController.
|
|
8409
8547
|
*
|
|
@@ -8530,7 +8668,7 @@ declare module "sap/ui/table/TablePersoController" {
|
|
|
8530
8668
|
*/
|
|
8531
8669
|
getTable(): ID;
|
|
8532
8670
|
/**
|
|
8533
|
-
* @
|
|
8671
|
+
* @experimental (since 1.21.2) - API might change / feature requires the sap.m library!
|
|
8534
8672
|
*
|
|
8535
8673
|
* Opens the personalization dialog for the Table to modify the visibility and the order of the columns.
|
|
8536
8674
|
*
|
|
@@ -8659,7 +8797,6 @@ declare module "sap/ui/table/TablePersoController" {
|
|
|
8659
8797
|
oTable: ID | Table
|
|
8660
8798
|
): this;
|
|
8661
8799
|
}
|
|
8662
|
-
export default TablePersoController;
|
|
8663
8800
|
|
|
8664
8801
|
export interface $TablePersoControllerSettings
|
|
8665
8802
|
extends $ManagedObjectSettings {
|
|
@@ -8712,8 +8849,6 @@ declare module "sap/ui/table/TablePersoController" {
|
|
|
8712
8849
|
declare module "sap/ui/table/TreeTable" {
|
|
8713
8850
|
import { default as Table, $TableSettings } from "sap/ui/table/Table";
|
|
8714
8851
|
|
|
8715
|
-
import Event from "sap/ui/base/Event";
|
|
8716
|
-
|
|
8717
8852
|
import { ID } from "sap/ui/core/library";
|
|
8718
8853
|
|
|
8719
8854
|
import ElementMetadata from "sap/ui/core/ElementMetadata";
|
|
@@ -8722,10 +8857,12 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
8722
8857
|
|
|
8723
8858
|
import { PropertyBindingInfo } from "sap/ui/base/ManagedObject";
|
|
8724
8859
|
|
|
8860
|
+
import Event from "sap/ui/base/Event";
|
|
8861
|
+
|
|
8725
8862
|
/**
|
|
8726
8863
|
* The TreeTable control provides a comprehensive set of features to display hierarchical data.
|
|
8727
8864
|
*/
|
|
8728
|
-
class TreeTable extends Table {
|
|
8865
|
+
export default class TreeTable extends Table {
|
|
8729
8866
|
/**
|
|
8730
8867
|
* Constructor for a new TreeTable.
|
|
8731
8868
|
*
|
|
@@ -8833,7 +8970,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
8833
8970
|
/**
|
|
8834
8971
|
* The function to be called when the event occurs
|
|
8835
8972
|
*/
|
|
8836
|
-
fnFunction: (p1:
|
|
8973
|
+
fnFunction: (p1: TreeTable$ToggleOpenStateEvent) => void,
|
|
8837
8974
|
/**
|
|
8838
8975
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.TreeTable` itself
|
|
8839
8976
|
*/
|
|
@@ -8854,7 +8991,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
8854
8991
|
/**
|
|
8855
8992
|
* The function to be called when the event occurs
|
|
8856
8993
|
*/
|
|
8857
|
-
fnFunction: (p1:
|
|
8994
|
+
fnFunction: (p1: TreeTable$ToggleOpenStateEvent) => void,
|
|
8858
8995
|
/**
|
|
8859
8996
|
* Context object to call the event handler with. Defaults to this `sap.ui.table.TreeTable` itself
|
|
8860
8997
|
*/
|
|
@@ -8889,7 +9026,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
8889
9026
|
/**
|
|
8890
9027
|
* The function to be called, when the event occurs
|
|
8891
9028
|
*/
|
|
8892
|
-
fnFunction: (p1:
|
|
9029
|
+
fnFunction: (p1: TreeTable$ToggleOpenStateEvent) => void,
|
|
8893
9030
|
/**
|
|
8894
9031
|
* Context object on which the given function had to be called
|
|
8895
9032
|
*/
|
|
@@ -8923,7 +9060,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
8923
9060
|
iLevel: int
|
|
8924
9061
|
): this;
|
|
8925
9062
|
/**
|
|
8926
|
-
* @
|
|
9063
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
8927
9064
|
*
|
|
8928
9065
|
* Fires event {@link #event:toggleOpenState toggleOpenState} to attached listeners.
|
|
8929
9066
|
*
|
|
@@ -8933,7 +9070,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
8933
9070
|
/**
|
|
8934
9071
|
* Parameters to pass along with the event
|
|
8935
9072
|
*/
|
|
8936
|
-
mParameters?: $
|
|
9073
|
+
mParameters?: TreeTable$ToggleOpenStateEventParameters
|
|
8937
9074
|
): this;
|
|
8938
9075
|
/**
|
|
8939
9076
|
* @deprecated (since 1.76) - replaced by the `collapseRecursive` binding parameter. May not work with all
|
|
@@ -9284,7 +9421,7 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
9284
9421
|
iToIndex: int
|
|
9285
9422
|
): this;
|
|
9286
9423
|
/**
|
|
9287
|
-
* @
|
|
9424
|
+
* @ui5-protected Do not call from applications (only from related classes in the framework)
|
|
9288
9425
|
*
|
|
9289
9426
|
* Allows to hide the tree structure (tree icons, indentation) in tree mode (property `useGroupMode` is
|
|
9290
9427
|
* set to `false`).
|
|
@@ -9323,7 +9460,6 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
9323
9460
|
bUseGroupMode?: boolean
|
|
9324
9461
|
): this;
|
|
9325
9462
|
}
|
|
9326
|
-
export default TreeTable;
|
|
9327
9463
|
|
|
9328
9464
|
export interface $TreeTableSettings extends $TableSettings {
|
|
9329
9465
|
/**
|
|
@@ -9408,11 +9544,11 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
9408
9544
|
* Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
|
|
9409
9545
|
*/
|
|
9410
9546
|
toggleOpenState?: (
|
|
9411
|
-
oEvent: Event
|
|
9547
|
+
oEvent: Event<TreeTable$ToggleOpenStateEventParameters>
|
|
9412
9548
|
) => void;
|
|
9413
9549
|
}
|
|
9414
9550
|
|
|
9415
|
-
export interface $
|
|
9551
|
+
export interface TreeTable$ToggleOpenStateEventParameters {
|
|
9416
9552
|
/**
|
|
9417
9553
|
* Index of the expanded/collapsed row
|
|
9418
9554
|
*/
|
|
@@ -9428,6 +9564,14 @@ declare module "sap/ui/table/TreeTable" {
|
|
|
9428
9564
|
*/
|
|
9429
9565
|
expanded?: boolean;
|
|
9430
9566
|
}
|
|
9567
|
+
|
|
9568
|
+
/**
|
|
9569
|
+
* @deprecated (since 1.115.1) - This name was introduced in 1.115.0, but will be 'TreeTable$ToggleOpenStateEventParameters'
|
|
9570
|
+
* in 1.115.1 and any later releases.
|
|
9571
|
+
*/
|
|
9572
|
+
export type $TreeTableToggleOpenStateEventParameters = TreeTable$ToggleOpenStateEventParameters;
|
|
9573
|
+
|
|
9574
|
+
export type TreeTable$ToggleOpenStateEvent = Event<TreeTable$ToggleOpenStateEventParameters>;
|
|
9431
9575
|
}
|
|
9432
9576
|
|
|
9433
9577
|
declare namespace sap {
|