@openui5/sap.ui.table 1.142.1 → 1.142.3
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 +3 -3
- package/src/sap/ui/table/.library +2 -2
- package/src/sap/ui/table/AnalyticalColumn.js +2 -2
- package/src/sap/ui/table/AnalyticalColumnMenu.js +2 -2
- package/src/sap/ui/table/AnalyticalTable.js +2 -2
- package/src/sap/ui/table/Column.js +2 -2
- package/src/sap/ui/table/ColumnMenu.js +2 -2
- package/src/sap/ui/table/CreationRow.js +2 -2
- package/src/sap/ui/table/CreationRowRenderer.js +1 -1
- package/src/sap/ui/table/Row.js +2 -2
- package/src/sap/ui/table/RowAction.js +2 -2
- package/src/sap/ui/table/RowActionItem.js +2 -2
- package/src/sap/ui/table/RowActionRenderer.js +1 -1
- package/src/sap/ui/table/RowSettings.js +2 -2
- package/src/sap/ui/table/Table.js +2 -2
- package/src/sap/ui/table/TablePersoController.js +2 -2
- package/src/sap/ui/table/TableRenderer.js +1 -1
- package/src/sap/ui/table/TreeTable.js +2 -2
- package/src/sap/ui/table/designtime/AnalyticalTable.designtime.js +1 -1
- package/src/sap/ui/table/designtime/Table.designtime.js +1 -1
- package/src/sap/ui/table/designtime/library.designtime.js +1 -1
- package/src/sap/ui/table/extensions/Accessibility.js +2 -2
- package/src/sap/ui/table/extensions/AccessibilityRender.js +2 -2
- package/src/sap/ui/table/extensions/DragAndDrop.js +2 -2
- package/src/sap/ui/table/extensions/ExtensionBase.js +2 -2
- package/src/sap/ui/table/extensions/Keyboard.js +2 -2
- package/src/sap/ui/table/extensions/KeyboardDelegate.js +2 -2
- package/src/sap/ui/table/extensions/Pointer.js +2 -2
- package/src/sap/ui/table/extensions/Scrolling.js +2 -2
- package/src/sap/ui/table/extensions/ScrollingIOS.js +2 -2
- package/src/sap/ui/table/extensions/Synchronization.js +2 -2
- package/src/sap/ui/table/library.js +11 -11
- package/src/sap/ui/table/library.support.js +1 -1
- package/src/sap/ui/table/menus/AnalyticalTableContextMenu.js +2 -2
- package/src/sap/ui/table/menus/ColumnHeaderMenuAdapter.js +2 -2
- package/src/sap/ui/table/menus/ContextMenu.js +2 -2
- package/src/sap/ui/table/menus/LegacyColumnMenuAdapter.js +1 -1
- package/src/sap/ui/table/menus/MobileColumnHeaderMenuAdapter.js +2 -2
- package/src/sap/ui/table/plugins/BindingSelection.js +2 -2
- package/src/sap/ui/table/plugins/MultiSelectionPlugin.js +2 -2
- package/src/sap/ui/table/plugins/ODataV4Aggregation.js +2 -2
- package/src/sap/ui/table/plugins/ODataV4Hierarchy.js +2 -2
- package/src/sap/ui/table/plugins/ODataV4MultiLevel.js +2 -2
- package/src/sap/ui/table/plugins/ODataV4MultiSelection.js +2 -2
- package/src/sap/ui/table/plugins/ODataV4Selection.js +2 -2
- package/src/sap/ui/table/plugins/ODataV4SingleSelection.js +2 -2
- package/src/sap/ui/table/plugins/PluginBase.js +2 -2
- package/src/sap/ui/table/plugins/SelectionModelSelection.js +2 -2
- package/src/sap/ui/table/plugins/SelectionPlugin.js +2 -2
- package/src/sap/ui/table/rowmodes/Auto.js +3 -13
- package/src/sap/ui/table/rowmodes/Fixed.js +3 -10
- package/src/sap/ui/table/rowmodes/Interactive.js +7 -20
- package/src/sap/ui/table/rowmodes/RowMode.js +2 -2
- package/src/sap/ui/table/rowmodes/Type.js +1 -1
- package/src/sap/ui/table/rowmodes/Variable.js +2 -2
- package/src/sap/ui/table/rules/Accessibility.support.js +1 -1
- package/src/sap/ui/table/rules/Binding.support.js +1 -1
- package/src/sap/ui/table/rules/ColumnTemplate.support.js +1 -1
- package/src/sap/ui/table/rules/Plugins.support.js +1 -1
- package/src/sap/ui/table/rules/Rows.support.js +1 -1
- package/src/sap/ui/table/rules/TableHelper.support.js +1 -1
- package/src/sap/ui/table/themes/base/library.source.less +1 -1
- package/src/sap/ui/table/themes/sap_hcb/library.source.less +1 -1
- package/src/sap/ui/table/utils/TableUtils.js +2 -2
- package/src/sap/ui/table/utils/_ColumnUtils.js +2 -2
- package/src/sap/ui/table/utils/_GroupingUtils.js +2 -2
- package/src/sap/ui/table/utils/_HookUtils.js +2 -2
- package/src/sap/ui/table/utils/_MenuUtils.js +2 -2
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -57,7 +57,7 @@ sap.ui.define([
|
|
|
57
57
|
*
|
|
58
58
|
* @extends sap.ui.table.menus.ColumnHeaderMenuAdapter
|
|
59
59
|
* @author SAP SE
|
|
60
|
-
* @version 1.142.
|
|
60
|
+
* @version 1.142.3
|
|
61
61
|
* @private
|
|
62
62
|
* @alias sap.ui.table.menus.MobileColumnHeaderMenuAdapter
|
|
63
63
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* @extends sap.ui.table.plugins.SelectionPlugin
|
|
25
25
|
*
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.142.
|
|
27
|
+
* @version 1.142.3
|
|
28
28
|
|
|
29
29
|
* @private
|
|
30
30
|
* @alias sap.ui.table.plugins.BindingSelection
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -56,7 +56,7 @@ sap.ui.define([
|
|
|
56
56
|
* @extends sap.ui.table.plugins.SelectionPlugin
|
|
57
57
|
*
|
|
58
58
|
* @author SAP SE
|
|
59
|
-
* @version 1.142.
|
|
59
|
+
* @version 1.142.3
|
|
60
60
|
*
|
|
61
61
|
* @public
|
|
62
62
|
* @since 1.64
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @extends sap.ui.core.Element
|
|
28
28
|
*
|
|
29
29
|
* @author SAP SE
|
|
30
|
-
* @version 1.142.
|
|
30
|
+
* @version 1.142.3
|
|
31
31
|
*
|
|
32
32
|
* @public
|
|
33
33
|
* @since 1.140
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @extends sap.ui.core.Element
|
|
28
28
|
*
|
|
29
29
|
* @author SAP SE
|
|
30
|
-
* @version 1.142.
|
|
30
|
+
* @version 1.142.3
|
|
31
31
|
*
|
|
32
32
|
* @public
|
|
33
33
|
* @since 1.140
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* @extends sap.ui.table.plugins.PluginBase
|
|
22
22
|
*
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.142.
|
|
24
|
+
* @version 1.142.3
|
|
25
25
|
*
|
|
26
26
|
* @private
|
|
27
27
|
* @alias sap.ui.table.plugins.ODataV4MultiLevel
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -41,7 +41,7 @@ sap.ui.define([
|
|
|
41
41
|
* @extends sap.ui.table.plugins.SelectionPlugin
|
|
42
42
|
*
|
|
43
43
|
* @author SAP SE
|
|
44
|
-
* @version 1.142.
|
|
44
|
+
* @version 1.142.3
|
|
45
45
|
*
|
|
46
46
|
* @public
|
|
47
47
|
* @since 1.140
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -35,7 +35,7 @@ sap.ui.define([
|
|
|
35
35
|
* @extends sap.ui.table.plugins.SelectionPlugin
|
|
36
36
|
*
|
|
37
37
|
* @author SAP SE
|
|
38
|
-
* @version 1.142.
|
|
38
|
+
* @version 1.142.3
|
|
39
39
|
*
|
|
40
40
|
* @private
|
|
41
41
|
* @alias sap.ui.table.plugins.ODataV4Selection
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -36,7 +36,7 @@ sap.ui.define([
|
|
|
36
36
|
* @extends sap.ui.table.plugins.SelectionPlugin
|
|
37
37
|
*
|
|
38
38
|
* @author SAP SE
|
|
39
|
-
* @version 1.142.
|
|
39
|
+
* @version 1.142.3
|
|
40
40
|
*
|
|
41
41
|
* @public
|
|
42
42
|
* @since 1.140
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -19,7 +19,7 @@ sap.ui.define([
|
|
|
19
19
|
* @extends sap.ui.core.Element
|
|
20
20
|
*
|
|
21
21
|
* @author SAP SE
|
|
22
|
-
* @version 1.142.
|
|
22
|
+
* @version 1.142.3
|
|
23
23
|
*
|
|
24
24
|
* @private
|
|
25
25
|
* @experimental Since 1.75
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* @extends sap.ui.table.plugins.SelectionPlugin
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.142.
|
|
29
|
+
* @version 1.142.3
|
|
30
30
|
*
|
|
31
31
|
* @private
|
|
32
32
|
* @alias sap.ui.table.plugins.SelectionModelSelection
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -21,7 +21,7 @@ sap.ui.define([
|
|
|
21
21
|
* @extends sap.ui.core.Element
|
|
22
22
|
*
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.142.
|
|
24
|
+
* @version 1.142.3
|
|
25
25
|
*
|
|
26
26
|
* @public
|
|
27
27
|
* @since 1.64
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -38,7 +38,7 @@ sap.ui.define([
|
|
|
38
38
|
* @public
|
|
39
39
|
*
|
|
40
40
|
* @author SAP SE
|
|
41
|
-
* @version 1.142.
|
|
41
|
+
* @version 1.142.3
|
|
42
42
|
*/
|
|
43
43
|
const AutoRowMode = RowMode.extend("sap.ui.table.rowmodes.Auto", /** @lends sap.ui.table.rowmodes.Auto.prototype */ {
|
|
44
44
|
metadata: {
|
|
@@ -360,22 +360,12 @@ sap.ui.define([
|
|
|
360
360
|
AutoRowMode.prototype.renderCellContentStyles = function(oRM) {
|
|
361
361
|
let iRowContentHeight = this.getRowContentHeight();
|
|
362
362
|
|
|
363
|
-
/**
|
|
364
|
-
* @deprecated As of version 1.119
|
|
365
|
-
*/
|
|
366
|
-
if (this.bLegacy) {
|
|
367
|
-
if (iRowContentHeight > 0) {
|
|
368
|
-
oRM.style("max-height", iRowContentHeight + "px");
|
|
369
|
-
}
|
|
370
|
-
return;
|
|
371
|
-
}
|
|
372
|
-
|
|
373
363
|
if (iRowContentHeight <= 0) {
|
|
374
364
|
iRowContentHeight = this.getDefaultRowContentHeightOfTable();
|
|
375
365
|
}
|
|
376
366
|
|
|
377
367
|
if (iRowContentHeight > 0) {
|
|
378
|
-
oRM.style("max-height", iRowContentHeight + "px");
|
|
368
|
+
oRM.style("max-height", iRowContentHeight - 1 + "px");
|
|
379
369
|
}
|
|
380
370
|
};
|
|
381
371
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* @public
|
|
28
28
|
*
|
|
29
29
|
* @author SAP SE
|
|
30
|
-
* @version 1.142.
|
|
30
|
+
* @version 1.142.3
|
|
31
31
|
*/
|
|
32
32
|
const FixedRowMode = RowMode.extend("sap.ui.table.rowmodes.Fixed", /** @lends sap.ui.table.rowmodes.Fixed.prototype */ {
|
|
33
33
|
metadata: {
|
|
@@ -231,19 +231,12 @@ sap.ui.define([
|
|
|
231
231
|
FixedRowMode.prototype.renderCellContentStyles = function(oRM) {
|
|
232
232
|
let iRowContentHeight = this.getRowContentHeight();
|
|
233
233
|
|
|
234
|
-
/**
|
|
235
|
-
* @deprecated As of version 1.119
|
|
236
|
-
*/
|
|
237
|
-
if (this.bLegacy) {
|
|
238
|
-
return;
|
|
239
|
-
}
|
|
240
|
-
|
|
241
234
|
if (iRowContentHeight <= 0) {
|
|
242
235
|
iRowContentHeight = this.getDefaultRowContentHeightOfTable();
|
|
243
236
|
}
|
|
244
237
|
|
|
245
238
|
if (iRowContentHeight > 0) {
|
|
246
|
-
oRM.style("max-height", iRowContentHeight + "px");
|
|
239
|
+
oRM.style("max-height", iRowContentHeight - 1 + "px");
|
|
247
240
|
}
|
|
248
241
|
};
|
|
249
242
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -40,7 +40,7 @@ sap.ui.define([
|
|
|
40
40
|
* @public
|
|
41
41
|
*
|
|
42
42
|
* @author SAP SE
|
|
43
|
-
* @version 1.142.
|
|
43
|
+
* @version 1.142.3
|
|
44
44
|
*/
|
|
45
45
|
const InteractiveRowMode = RowMode.extend("sap.ui.table.rowmodes.Interactive", /** @lends sap.ui.table.rowmodes.Interactive.prototype */ {
|
|
46
46
|
metadata: {
|
|
@@ -254,19 +254,12 @@ sap.ui.define([
|
|
|
254
254
|
InteractiveRowMode.prototype.renderCellContentStyles = function(oRM) {
|
|
255
255
|
let iRowContentHeight = this.getRowContentHeight();
|
|
256
256
|
|
|
257
|
-
/**
|
|
258
|
-
* @deprecated As of version 1.119
|
|
259
|
-
*/
|
|
260
|
-
if (this.bLegacy) {
|
|
261
|
-
return;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
257
|
if (iRowContentHeight <= 0) {
|
|
265
258
|
iRowContentHeight = this.getDefaultRowContentHeightOfTable();
|
|
266
259
|
}
|
|
267
260
|
|
|
268
261
|
if (iRowContentHeight > 0) {
|
|
269
|
-
oRM.style("max-height", iRowContentHeight + "px");
|
|
262
|
+
oRM.style("max-height", iRowContentHeight - 1 + "px");
|
|
270
263
|
}
|
|
271
264
|
};
|
|
272
265
|
|
|
@@ -372,12 +365,6 @@ sap.ui.define([
|
|
|
372
365
|
return Math.max(0, Math.floor(iViewportHeight - oTableDomRef.getBoundingClientRect().height + oRowContainer.getBoundingClientRect().height));
|
|
373
366
|
};
|
|
374
367
|
|
|
375
|
-
InteractiveRowMode.prototype.setRowCount = function(iRowCount) {
|
|
376
|
-
this.setProperty("rowCount", iRowCount);
|
|
377
|
-
setNewRowCount.call(this, iRowCount);
|
|
378
|
-
return this;
|
|
379
|
-
};
|
|
380
|
-
|
|
381
368
|
InteractiveRowMode.prototype.updateTable = function(sReason) {
|
|
382
369
|
this.getTable().getDomRef("heightResizer")?.setAttribute("aria-valuenow", this.getActualRowCount());
|
|
383
370
|
|
|
@@ -557,7 +544,7 @@ sap.ui.define([
|
|
|
557
544
|
shortcutText: TableUtils.getResourceText("TBL_RSZ_ROW_UP_SHORTCUT"),
|
|
558
545
|
select: function() {
|
|
559
546
|
const iRowCount = oMode.getActualRowCount();
|
|
560
|
-
|
|
547
|
+
setNewRowCount.call(oMode, Math.max(iRowCount - 1, oMode.getMinRowCount()));
|
|
561
548
|
oMode.updateTable(TableUtils.RowsUpdateReason.Render);
|
|
562
549
|
}
|
|
563
550
|
}),
|
|
@@ -566,7 +553,7 @@ sap.ui.define([
|
|
|
566
553
|
shortcutText: TableUtils.getResourceText("TBL_RSZ_ROW_DOWN_SHORTCUT"),
|
|
567
554
|
select: function() {
|
|
568
555
|
const iRowCount = oMode.getActualRowCount();
|
|
569
|
-
|
|
556
|
+
setNewRowCount.call(oMode, Math.min(iRowCount + 1, oMode._getMaxRowCount()));
|
|
570
557
|
oMode.updateTable(TableUtils.RowsUpdateReason.Render);
|
|
571
558
|
}
|
|
572
559
|
}),
|
|
@@ -574,7 +561,7 @@ sap.ui.define([
|
|
|
574
561
|
text: TableUtils.getResourceText("TBL_RSZ_MINIMIZE"),
|
|
575
562
|
shortcutText: TableUtils.getResourceText("TBL_RSZ_MINIMIZE_SHORTCUT"),
|
|
576
563
|
select: function() {
|
|
577
|
-
|
|
564
|
+
setNewRowCount.call(oMode, oMode.getMinRowCount());
|
|
578
565
|
oMode.updateTable(TableUtils.RowsUpdateReason.Render);
|
|
579
566
|
}
|
|
580
567
|
}),
|
|
@@ -582,7 +569,7 @@ sap.ui.define([
|
|
|
582
569
|
text: TableUtils.getResourceText("TBL_RSZ_MAXIMIZE"),
|
|
583
570
|
shortcutText: TableUtils.getResourceText("TBL_RSZ_MAXIMIZE_SHORTCUT"),
|
|
584
571
|
select: function() {
|
|
585
|
-
|
|
572
|
+
setNewRowCount.call(oMode, oMode._getMaxRowCount());
|
|
586
573
|
oMode.updateTable(TableUtils.RowsUpdateReason.Render);
|
|
587
574
|
}
|
|
588
575
|
})
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -37,7 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
* @public
|
|
38
38
|
*
|
|
39
39
|
* @author SAP SE
|
|
40
|
-
* @version 1.142.
|
|
40
|
+
* @version 1.142.3
|
|
41
41
|
*/
|
|
42
42
|
const RowMode = Element.extend("sap.ui.table.rowmodes.RowMode", /** @lends sap.ui.table.rowmodes.RowMode.prototype */ {
|
|
43
43
|
metadata: {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define(["sap/ui/base/DataType"], function(DataType) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
sap.ui.define([
|
|
@@ -23,7 +23,7 @@ sap.ui.define([
|
|
|
23
23
|
* @extends sap.ui.table.rowmodes.RowMode
|
|
24
24
|
*
|
|
25
25
|
* @author SAP SE
|
|
26
|
-
* @version 1.142.
|
|
26
|
+
* @version 1.142.3
|
|
27
27
|
*
|
|
28
28
|
* @constructor
|
|
29
29
|
* @private
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
@import "../../../../../sap/ui/core/themes/base/base.less";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -208,7 +208,7 @@ sap.ui.define([
|
|
|
208
208
|
* Static collection of utility functions related to the sap.ui.table.Table, ...
|
|
209
209
|
*
|
|
210
210
|
* @author SAP SE
|
|
211
|
-
* @version 1.142.
|
|
211
|
+
* @version 1.142.3
|
|
212
212
|
* @namespace
|
|
213
213
|
* @alias sap.ui.table.utils.TableUtils
|
|
214
214
|
* @private
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -18,7 +18,7 @@ sap.ui.define([
|
|
|
18
18
|
* Note: Do not access the functions of this helper directly, but via <code>sap.ui.table.utils.TableUtils.Column...</code>
|
|
19
19
|
*
|
|
20
20
|
* @author SAP SE
|
|
21
|
-
* @version 1.142.
|
|
21
|
+
* @version 1.142.3
|
|
22
22
|
* @namespace
|
|
23
23
|
* @alias sap.ui.table.utils._ColumnUtils
|
|
24
24
|
* @private
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -24,7 +24,7 @@ sap.ui.define([
|
|
|
24
24
|
* Note: Do not access the functions of this helper directly, but via <code>sap.ui.table.utils.TableUtils.Grouping...</code>
|
|
25
25
|
*
|
|
26
26
|
* @author SAP SE
|
|
27
|
-
* @version 1.142.
|
|
27
|
+
* @version 1.142.3
|
|
28
28
|
* @namespace
|
|
29
29
|
* @alias sap.ui.table.utils._GroupingUtils
|
|
30
30
|
* @private
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -21,7 +21,7 @@ sap.ui.define(["sap/ui/base/DataType", "sap/ui/model/ChangeReason"], function(Da
|
|
|
21
21
|
* - There is no concept for public or protected hooks. Never expose a hook directly, only indirectly as can be seen in the examples.
|
|
22
22
|
*
|
|
23
23
|
* @author SAP SE
|
|
24
|
-
* @version 1.142.
|
|
24
|
+
* @version 1.142.3
|
|
25
25
|
* @namespace
|
|
26
26
|
* @alias sap.ui.table.utils._HookUtils
|
|
27
27
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* OpenUI5
|
|
3
|
-
* (c) Copyright
|
|
3
|
+
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
4
4
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
5
|
*/
|
|
6
6
|
|
|
@@ -14,7 +14,7 @@ sap.ui.define([], function() {
|
|
|
14
14
|
* Note: Do not access the functions of this helper directly, but via <code>sap.ui.table.utils.TableUtils.Menu...</code>
|
|
15
15
|
*
|
|
16
16
|
* @author SAP SE
|
|
17
|
-
* @version 1.142.
|
|
17
|
+
* @version 1.142.3
|
|
18
18
|
* @namespace
|
|
19
19
|
* @alias sap.ui.table.utils._MenuUtils
|
|
20
20
|
* @private
|