This task seems to be more simple once you follow the correct steps. I am working with a bootstrap table and aiming to insert a row inside another row upon clicking a button. Currently, the new row is being added directly to the table. Although tables are new to me, I am learning as I go.
<thead>
<tr>
<th>Products</th>
<th>Quantity</th>
<th></th>
</tr>
</thead>
A helpful Plunker example showcasing my issue is available at http://plnkr.co/edit/FMICwZC22KwzcYBGESAz?p=preview based on suggestions by @Coldstar
My Attempts So Far:
1) Trying a Nested Table but it was unsuccessful.
2) Adjusting the placement of my <tr>
elements.
Your assistance would be greatly appreciated.
Expected Outcome:
I aim to insert a row after each product entry in the list.
->Row representing Product 1
-->Nested Row for Delivery within Row of Product 1
->Row representing Product 2
-->Nested Row for Delivery within Row of Product 2