The following example makes the first column editable, selectable and key navigations works. The rest of the columns does not work with a . It seems like only the first column after a row with colspan works.
<table class="table-data" cell-cursor="cc">
<tr>
<td colspan="3">Header</td>
</tr>
<tr>
<td>A (Editable, Selectable, Key nav works)</td>
<td>B (not working)</td>
<td>C (not working)</td>
</tr>
<tr>
<td>D (Editable, Selectable, Key nav works)</td>
<td>E (not working)</td>
<td>F (not working)</td>
</tr>
</table>
| Header |
| A (Editable, Selectable, Key nav works) |
B (not working) |
C (not working) |
| D (Editable, Selectable, Key nav works) |
E (not working) |
F (not working) |
The following example makes the first column editable, selectable and key navigations works. The rest of the columns does not work with a . It seems like only the first column after a row with colspan works.