Hello,
does anyone knows how to span rows/columns within the bsp-extension tableview?
Output should be like this:
<table>
<tr>
<td rowspan="3">Specific</td>
<td>..</td>
<td>..</td>
</tr>
<tr>
<td>..</td>
<td>..</td>
</tr>
<tr>
<td>..</td>
<td>..</td>
</tr>
<tr>
<td rowspan="3">Generic</td>
<td>..</td>
<td>..</td>
</tr>
<tr>
<td>..</td>
<td>..</td>
</tr>
<tr>
<td>..</td>
<td>..</td>
</tr>
</table>
Searching bsp-forum, i have not found any solution.
The same feature is needed for spanning columns.
Best regards,
Stefan
If you set a column as fixed (fixedColumn="TRUE") and if the values are same there will be an automatic rowspan for repeated values.
(check out sbspext_table/TableViewFixedColumns.bsp)
I need to find out how colspan can be done.
Regards
Raja
Add a comment