on 2014 Jul 21 2:10 PM
Hi guys,
I am coloring all the rows, which don't have an entry.
I do that by using the event onAfterRendering from the table control.
The coloring is working fine, but the rows and cols get broken as u can see on the attached picture.
By adding a new entry to the table, they get fixed.
Any ideas how could i fix that?
I appreciate any help.
Regars,
Georgi
This is because you have overwritten the library code 🙂
please do this.
<yourControl>.onAfterRendering = function() {
sap.ui.table.Table.prototype.onAfterRendering.apply(this);
<your code> ....
}
-D
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
64 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.