I have declared a <table>
element in a HTML-template and put a custom-component
in it's row, like this:
<table>
<thead>
....
</thead>
<tbody>
<tr>
<CustomComponent></CustomComponent>
</tr>
</tbody>
</table>
CustomComponent
contains some <td>
s.
i want to strip <CustomComponent></CustomComponent>
off, So that internal <td>
s be the first children of <tr>
.