all,
I have an exercise where I have a table - initially I used the sap.m.table because of the merge duplicates functionality ... but now I went back to the sap.ui.commons table and I am able to reproduce the merge duplicates via jquery removing some <td> tags... my table looks like I need it to look.. my issue is that when I scroll (up or down) my table rows in the non-merged cells are misaligned until I have scrolled enough rows to catch up the next(or prev) merged cell.
think of the table structure of something like this below... so when I scroll, my first row shows up until the X rows are moved..
logically, I would like to scroll and move merged cells and the rest of the columns for that section up or down depending on my scrolling.. it would almost be like a merged cell on the first cell and the second cell to contain a table itself.. trying the table itself on the second cell is performance expensive... so I am looking for an alternative of how to group the non-rowSPan rows of the rowSpan section to be scrolled together.
<table><tbody>
<tr>
<td rowSpan=X></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<!-- then the first x rows repeat again for my next merge duplicates section -->
</tbody></table>
thanks again
Sergio