We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59fe532 + ffbf930 commit 10b7ed1Copy full SHA for 10b7ed1
frameworks/non-keyed/openui5/webapp/ControlRenderer.js
@@ -5,7 +5,7 @@
5
sap.ui.define([], function () {
6
7
var ControlRenderer = {
8
- apiVersion: 2
+ apiVersion: 4
9
};
10
11
ControlRenderer.render = function (oRM, oControl) {
@@ -101,7 +101,7 @@ sap.ui.define([], function () {
101
//rows
102
oControl.getRows().forEach(row => {
103
// <tr id={{this.id}} class={{this._class}}></tr>
104
- oRM.openStart("tr");
+ oRM.openStart("tr", row.id + "");
105
if (row.id === selected) {
106
oRM.class("danger");
107
}
@@ -161,4 +161,4 @@ sap.ui.define([], function () {
161
162
return ControlRenderer;
163
164
-}, /* bExport= */ true);
+}, /* bExport= */ true);
0 commit comments