@openui5/sap.ui.table 1.142.2 → 1.142.4
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 +1 -1
- package/src/sap/ui/table/AnalyticalColumn.js +1 -1
- package/src/sap/ui/table/AnalyticalColumnMenu.js +1 -1
- package/src/sap/ui/table/AnalyticalTable.js +10 -1
- package/src/sap/ui/table/Column.js +1 -1
- package/src/sap/ui/table/ColumnMenu.js +1 -1
- package/src/sap/ui/table/CreationRow.js +1 -1
- package/src/sap/ui/table/Row.js +1 -1
- package/src/sap/ui/table/RowAction.js +1 -1
- package/src/sap/ui/table/RowActionItem.js +1 -1
- package/src/sap/ui/table/RowSettings.js +1 -1
- package/src/sap/ui/table/Table.js +1 -1
- package/src/sap/ui/table/TablePersoController.js +1 -1
- package/src/sap/ui/table/TreeTable.js +1 -1
- package/src/sap/ui/table/extensions/Accessibility.js +1 -1
- package/src/sap/ui/table/extensions/AccessibilityRender.js +1 -1
- package/src/sap/ui/table/extensions/DragAndDrop.js +1 -1
- package/src/sap/ui/table/extensions/ExtensionBase.js +1 -1
- package/src/sap/ui/table/extensions/Keyboard.js +1 -1
- package/src/sap/ui/table/extensions/KeyboardDelegate.js +1 -1
- package/src/sap/ui/table/extensions/Pointer.js +1 -1
- package/src/sap/ui/table/extensions/Scrolling.js +1 -1
- package/src/sap/ui/table/extensions/ScrollingIOS.js +1 -1
- package/src/sap/ui/table/extensions/Synchronization.js +1 -1
- package/src/sap/ui/table/library.js +10 -10
- package/src/sap/ui/table/menus/AnalyticalTableContextMenu.js +1 -1
- package/src/sap/ui/table/menus/ColumnHeaderMenuAdapter.js +1 -1
- package/src/sap/ui/table/menus/ContextMenu.js +1 -1
- package/src/sap/ui/table/menus/MobileColumnHeaderMenuAdapter.js +1 -1
- package/src/sap/ui/table/plugins/BindingSelection.js +1 -1
- package/src/sap/ui/table/plugins/MultiSelectionPlugin.js +1 -1
- package/src/sap/ui/table/plugins/ODataV4Aggregation.js +1 -1
- package/src/sap/ui/table/plugins/ODataV4Hierarchy.js +1 -1
- package/src/sap/ui/table/plugins/ODataV4MultiLevel.js +1 -1
- package/src/sap/ui/table/plugins/ODataV4MultiSelection.js +1 -1
- package/src/sap/ui/table/plugins/ODataV4Selection.js +1 -1
- package/src/sap/ui/table/plugins/ODataV4SingleSelection.js +1 -1
- package/src/sap/ui/table/plugins/PluginBase.js +1 -1
- package/src/sap/ui/table/plugins/SelectionModelSelection.js +1 -1
- package/src/sap/ui/table/plugins/SelectionPlugin.js +1 -1
- package/src/sap/ui/table/rowmodes/Auto.js +2 -12
- package/src/sap/ui/table/rowmodes/Fixed.js +2 -9
- package/src/sap/ui/table/rowmodes/Interactive.js +6 -19
- package/src/sap/ui/table/rowmodes/RowMode.js +1 -1
- package/src/sap/ui/table/rowmodes/Variable.js +1 -1
- package/src/sap/ui/table/utils/TableUtils.js +1 -1
- package/src/sap/ui/table/utils/_ColumnUtils.js +1 -1
- package/src/sap/ui/table/utils/_GroupingUtils.js +1 -1
- package/src/sap/ui/table/utils/_HookUtils.js +1 -1
- package/src/sap/ui/table/utils/_MenuUtils.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.ui.table",
|
|
3
|
-
"version": "1.142.
|
|
3
|
+
"version": "1.142.4",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.ui.table",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"url": "https://github.com/UI5/openui5.git"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@openui5/sap.ui.core": "1.142.
|
|
18
|
-
"@openui5/sap.ui.unified": "1.142.
|
|
17
|
+
"@openui5/sap.ui.core": "1.142.4",
|
|
18
|
+
"@openui5/sap.ui.unified": "1.142.4"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<copyright>OpenUI5
|
|
7
7
|
* (c) Copyright 2026 SAP SE or an SAP affiliate company.
|
|
8
8
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
9
|
-
<version>1.142.
|
|
9
|
+
<version>1.142.4</version>
|
|
10
10
|
|
|
11
11
|
<documentation>Table-like controls, mainly for desktop scenarios.</documentation>
|
|
12
12
|
|
|
@@ -52,7 +52,7 @@ sap.ui.define([
|
|
|
52
52
|
* @see {@link topic:148892ff9aea4a18b912829791e38f3e Tables: Which One Should I Choose?}
|
|
53
53
|
*
|
|
54
54
|
* @extends sap.ui.table.Table
|
|
55
|
-
* @version 1.142.
|
|
55
|
+
* @version 1.142.4
|
|
56
56
|
*
|
|
57
57
|
* @constructor
|
|
58
58
|
* @public
|
|
@@ -558,6 +558,15 @@ sap.ui.define([
|
|
|
558
558
|
this._updateColumns(bSuppressRefresh, bForceChange);
|
|
559
559
|
};
|
|
560
560
|
|
|
561
|
+
/**
|
|
562
|
+
* Returns the Columns of the AnalyticalTable.
|
|
563
|
+
*
|
|
564
|
+
* @returns {sap.ui.table.AnalyticalColumn[]}
|
|
565
|
+
* @public
|
|
566
|
+
* @function
|
|
567
|
+
* @name sap.ui.table.AnalyticalTable#getColumns
|
|
568
|
+
*/
|
|
569
|
+
|
|
561
570
|
AnalyticalTable.prototype.addColumn = function(vColumn, bSuppressInvalidate) {
|
|
562
571
|
//@TODO: Implement addColumn(Column[] || oColumn)
|
|
563
572
|
const oColumn = this._getColumn(vColumn);
|
package/src/sap/ui/table/Row.js
CHANGED
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* The <code>RowSettings</code> control allows you to configure a row.
|
|
28
28
|
* You can only use this control in the context of the <code>sap.ui.table.Table</code> control to define row settings.
|
|
29
29
|
* @extends sap.ui.core.Element
|
|
30
|
-
* @version 1.142.
|
|
30
|
+
* @version 1.142.4
|
|
31
31
|
*
|
|
32
32
|
* @constructor
|
|
33
33
|
* @public
|
|
@@ -38,7 +38,7 @@ sap.ui.define([
|
|
|
38
38
|
* The control can be used in combination with {@link sap.ui.model.json.JSONModel JSONModel} and {@link sap.ui.model.odata.v2.ODataModel ODataModel V2}.
|
|
39
39
|
* For a tree-table-like behavior with OData V4 services, use the {@link sap.ui.table.Table Table} control with the {@link sap.ui.table.plugins.ODataV4Hierarchy ODataV4Hierarchy} plugin.
|
|
40
40
|
* @extends sap.ui.table.Table
|
|
41
|
-
* @version 1.142.
|
|
41
|
+
* @version 1.142.4
|
|
42
42
|
*
|
|
43
43
|
* @constructor
|
|
44
44
|
* @public
|
|
@@ -1183,7 +1183,7 @@ sap.ui.define([
|
|
|
1183
1183
|
* @class Extension for sap.ui.table.Table which handles ACC related things.
|
|
1184
1184
|
* @extends sap.ui.table.extensions.ExtensionBase
|
|
1185
1185
|
* @author SAP SE
|
|
1186
|
-
* @version 1.142.
|
|
1186
|
+
* @version 1.142.4
|
|
1187
1187
|
* @constructor
|
|
1188
1188
|
* @private
|
|
1189
1189
|
* @alias sap.ui.table.extensions.Accessibility
|
|
@@ -44,7 +44,7 @@ sap.ui.define([
|
|
|
44
44
|
* @class Extension for sap.ui.table.TableRenderer which handles ACC related things.
|
|
45
45
|
* @extends sap.ui.table.extensions.ExtensionBase
|
|
46
46
|
* @author SAP SE
|
|
47
|
-
* @version 1.142.
|
|
47
|
+
* @version 1.142.4
|
|
48
48
|
* @constructor
|
|
49
49
|
* @private
|
|
50
50
|
* @alias sap.ui.table.extensions.AccessibilityRender
|
|
@@ -265,7 +265,7 @@ sap.ui.define([
|
|
|
265
265
|
* @class Extension for sap.ui.table.Table which handles keyboard related things.
|
|
266
266
|
* @extends sap.ui.table.extensions.ExtensionBase
|
|
267
267
|
* @author SAP SE
|
|
268
|
-
* @version 1.142.
|
|
268
|
+
* @version 1.142.4
|
|
269
269
|
* @constructor
|
|
270
270
|
* @private
|
|
271
271
|
* @alias sap.ui.table.extensions.Keyboard
|
|
@@ -670,7 +670,7 @@ sap.ui.define([
|
|
|
670
670
|
* @class Extension for sap.ui.table.Table which handles mouse and touch related things.
|
|
671
671
|
* @extends sap.ui.table.extensions.ExtensionBase
|
|
672
672
|
* @author SAP SE
|
|
673
|
-
* @version 1.142.
|
|
673
|
+
* @version 1.142.4
|
|
674
674
|
* @constructor
|
|
675
675
|
* @private
|
|
676
676
|
* @alias sap.ui.table.extensions.Pointer
|
|
@@ -2314,7 +2314,7 @@ sap.ui.define([
|
|
|
2314
2314
|
* @class Extension for sap.ui.table.Table which handles scrolling.
|
|
2315
2315
|
* @extends sap.ui.table.extensions.ExtensionBase
|
|
2316
2316
|
* @author SAP SE
|
|
2317
|
-
* @version 1.142.
|
|
2317
|
+
* @version 1.142.4
|
|
2318
2318
|
* @constructor
|
|
2319
2319
|
* @private
|
|
2320
2320
|
* @alias sap.ui.table.extensions.Scrolling
|
|
@@ -29,7 +29,7 @@ sap.ui.define([
|
|
|
29
29
|
* @class Extension for sap.ui.table.Table which handles the scrollbar on iOS.
|
|
30
30
|
* @extends sap.ui.table.extensions.ExtensionBase
|
|
31
31
|
* @author SAP SE
|
|
32
|
-
* @version 1.142.
|
|
32
|
+
* @version 1.142.4
|
|
33
33
|
* @constructor
|
|
34
34
|
* @private
|
|
35
35
|
* @alias sap.ui.table.extensions.ScrollingIOS
|
|
@@ -185,7 +185,7 @@ sap.ui.define([
|
|
|
185
185
|
* @class Extension for sap.ui.table.Table that allows synchronization with a table.
|
|
186
186
|
* @extends sap.ui.table.extensions.ExtensionBase
|
|
187
187
|
* @author SAP SE
|
|
188
|
-
* @version 1.142.
|
|
188
|
+
* @version 1.142.4
|
|
189
189
|
* @constructor
|
|
190
190
|
* @private
|
|
191
191
|
* @alias sap.ui.table.extensions.Synchronization
|
|
@@ -40,14 +40,14 @@ sap.ui.define([
|
|
|
40
40
|
* @namespace
|
|
41
41
|
* @alias sap.ui.table
|
|
42
42
|
* @author SAP SE
|
|
43
|
-
* @version 1.142.
|
|
43
|
+
* @version 1.142.4
|
|
44
44
|
* @since 0.8
|
|
45
45
|
* @public
|
|
46
46
|
*/
|
|
47
47
|
const thisLib = Library.init({
|
|
48
48
|
name: "sap.ui.table",
|
|
49
49
|
apiVersion: 2,
|
|
50
|
-
version: "1.142.
|
|
50
|
+
version: "1.142.4",
|
|
51
51
|
dependencies: ["sap.ui.core", "sap.ui.unified"],
|
|
52
52
|
...{
|
|
53
53
|
interactionDocumentation: true
|
|
@@ -114,7 +114,7 @@ sap.ui.define([
|
|
|
114
114
|
/**
|
|
115
115
|
* Navigation mode of the table
|
|
116
116
|
*
|
|
117
|
-
* @version 1.142.
|
|
117
|
+
* @version 1.142.4
|
|
118
118
|
* @enum {string}
|
|
119
119
|
* @deprecated As of version 1.38, the concept has been discarded.
|
|
120
120
|
* @public
|
|
@@ -145,7 +145,7 @@ sap.ui.define([
|
|
|
145
145
|
/**
|
|
146
146
|
* Row Action types.
|
|
147
147
|
*
|
|
148
|
-
* @version 1.142.
|
|
148
|
+
* @version 1.142.4
|
|
149
149
|
* @enum {string}
|
|
150
150
|
* @public
|
|
151
151
|
*/
|
|
@@ -176,7 +176,7 @@ sap.ui.define([
|
|
|
176
176
|
/**
|
|
177
177
|
* Selection behavior of the table
|
|
178
178
|
*
|
|
179
|
-
* @version 1.142.
|
|
179
|
+
* @version 1.142.4
|
|
180
180
|
* @enum {string}
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
@@ -207,7 +207,7 @@ sap.ui.define([
|
|
|
207
207
|
/**
|
|
208
208
|
* Selection mode of the table
|
|
209
209
|
*
|
|
210
|
-
* @version 1.142.
|
|
210
|
+
* @version 1.142.4
|
|
211
211
|
* @enum {string}
|
|
212
212
|
* @public
|
|
213
213
|
*/
|
|
@@ -245,7 +245,7 @@ sap.ui.define([
|
|
|
245
245
|
/**
|
|
246
246
|
* Sort order of a column
|
|
247
247
|
*
|
|
248
|
-
* @version 1.142.
|
|
248
|
+
* @version 1.142.4
|
|
249
249
|
* @enum {string}
|
|
250
250
|
* @public
|
|
251
251
|
* @deprecated As of version 1.120, replaced with <code>sap.ui.core.SortOrder</code>
|
|
@@ -272,7 +272,7 @@ sap.ui.define([
|
|
|
272
272
|
/**
|
|
273
273
|
* VisibleRowCountMode of the table
|
|
274
274
|
*
|
|
275
|
-
* @version 1.142.
|
|
275
|
+
* @version 1.142.4
|
|
276
276
|
* @enum {string}
|
|
277
277
|
* @deprecated As of version 1.119, see the <code>rowMode</code> aggregation of <code>sap.ui.table.Table</code> for more details.
|
|
278
278
|
* @public
|
|
@@ -317,7 +317,7 @@ sap.ui.define([
|
|
|
317
317
|
*
|
|
318
318
|
* Contains IDs of shared DOM references, which should be accessible to inheriting controls via getDomRef() function.
|
|
319
319
|
*
|
|
320
|
-
* @version 1.142.
|
|
320
|
+
* @version 1.142.4
|
|
321
321
|
* @enum {string}
|
|
322
322
|
* @public
|
|
323
323
|
*/
|
|
@@ -418,7 +418,7 @@ sap.ui.define([
|
|
|
418
418
|
*
|
|
419
419
|
* This is an alias for {@link sap.ui.model.TreeAutoExpandMode} and kept for compatibility reasons.
|
|
420
420
|
*
|
|
421
|
-
* @version 1.142.
|
|
421
|
+
* @version 1.142.4
|
|
422
422
|
* @typedef {sap.ui.model.TreeAutoExpandMode}
|
|
423
423
|
* @public
|
|
424
424
|
* @deprecated As of version 1.120, replaced by <code>sap.ui.model.TreeAutoExpandMode</code>
|
|
@@ -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.4
|
|
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
|
|
|
@@ -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.4
|
|
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
|
|
|
@@ -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.4
|
|
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
|
})
|
|
@@ -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.4
|
|
22
22
|
* @namespace
|
|
23
23
|
* @alias sap.ui.table.utils._ColumnUtils
|
|
24
24
|
* @private
|
|
@@ -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.4
|
|
28
28
|
* @namespace
|
|
29
29
|
* @alias sap.ui.table.utils._GroupingUtils
|
|
30
30
|
* @private
|
|
@@ -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.4
|
|
25
25
|
* @namespace
|
|
26
26
|
* @alias sap.ui.table.utils._HookUtils
|
|
27
27
|
*
|
|
@@ -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.4
|
|
18
18
|
* @namespace
|
|
19
19
|
* @alias sap.ui.table.utils._MenuUtils
|
|
20
20
|
* @private
|