I am rendering HTML table with the help of JavaScript. I have made the table successfully, but now I have one requirement to show some new data in a row like on click expand row
Table functionality:
- I am populating my table Some brand wise each brand has some items inside them, which I want to show when the brand is clicked
- I almost created the table, but not able to create the expandable row
- My one of column is populating wrong data also
In my code I have commented all the lines what I am doing at which line
Issues I am facing
- I have already commented the line where I am calculating netamount to populate inside
tbody
as GRN entery
brand wise but that's causing the issue
I have created two code snippets one as full static HTML like what I want, and a second to show what I have done.
The help I have found on Google
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<table class="table table-responsive table-hover table-bordered">
<thead>
<tr>
<th> Brand Name</th>
<th colspan="2">Total</th>
<th colspan="2">Jayanagar</th>
<th colspan="2">Malleshwaram</th>
<th colspan="2">Kolar</th>
</tr>
<tr>
<th></th>
<th>Grn Entery</th>
<th>Sales</th>
<th>Grn Entery</th>
<th>Sales</th>
<th>Grn Entery</th>
<th>Sales</th>
<th>Grn Entery</th>
<th>Sales</th>
</tr>
<tr>
<th>Total</th>
<th>1,97,445</th>
<th>6,83,880</th>
<th>1,97,445</th>
<th>4,76,426</th>
<th>0</th>
<th>1,15,313</th>
<th>0</th>
<th>92,141</th>
</tr>
</thead>
<tbody>
<tr>
<td><span class="clickable" data-toggle="collapse" id="row1" data-target=".row1"><i class="fas fa-plus" id="test"></i> </span>Bakery FG</td>
<td>1,610</td>
<td>0.82%</td>
<td>1,610 </td>
<td>0.82%</td>
<!-- this is comming as (1610/197445)*100 -->
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row1">
<td>Khara Boondhi-L</td>
<td>980</td>
<td>0.50%</td>
<td>980</td>
<td>0.50%</td>
<!-- this is comming as (980/197445)*100 -->
<td>0</td>
<td>0.00%</td>
<!-- lly for other outlets it will be calculated -->
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row1">
<td>Samosa-L</td>
<td>130</td>
<td>0.7%</td>
<td>130</td>
<td>0.7%</td>
<!-- this is comming as (130/197445)*100 -->
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row1">
<td>Corn Flakes Masala-L</td>
<td>500</td>
<td>0.25%</td>
<td>500</td>
<td>0.25%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr>
<td><span class="clickable" data-toggle="collapse" data-target=".row2"><i class="fas fa-plus" id="test"></i> </span>Pastry & Cake FG</td>
<td>49,230</td>
<td>25.00%</td>
<td>49,230</td>
<td>25.00%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row2">
<td>Plum Cake 250gm</td>
<td>110</td>
<td>0.05%</td>
<td>110</td>
<td>0.05%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row2">
<td>Butterscotch Cake</td>
<td>720</td>
<td>0.36%</td>
<td>720</td>
<td>0.36%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row2">
<td>Chocolate chips cake</td>
<td>40000</td>
<td>20.25%</td>
<td>40000</td>
<td>20.25%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row2">
<td>Mango Delight Cake</td>
<td>14000</td>
<td>7.09%</td>
<td>14000</td>
<td>7.09%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row2">
<td>Almond Honey Chocolate Cake</td>
<td>500</td>
<td>0.25%
<td>500</td>
<td>0.25%
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row2">
<td>Peach Cake</td>
<td>5500</td>
<td>2.78%</td>
<td>5500</td>
<td>2.78%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row2">
<td>Black Forest Cake</td>
<td>1000</td>
<td>0.50%</td>
<td>1000</td>
<td>0.50%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr>
<td><span class="clickable" data-toggle="collapse" data-target=".row3"><i class="fas fa-plus" id="test"></i> </span>Ice Cream FG</td>
<td>108441</td>
<td>54.92%</td>
<td>108441</td>
<td>54.92%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Chocolate Crazy Boom</td>
<td>2360</td>
<td>1.19%</td>
<td>2360</td>
<td>1.19%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Kesar Badam Falooda</td>
<td>4430</td>
<td>2.24%</td>
<td>4430</td>
<td>2.24%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Strawberry Ice-cream</td>
<td>1231</td>
<td>0.62%</td>
<td>1231</td>
<td>0.62%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>TOP- Chocochips</td>
<td>2200</td>
<td>1.11%</td>
<td>2200</td>
<td>1.11%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Cheese Cake Ice-Cream</td>
<td>500</td>
<td>0.25%</td>
<td>500</td>
<td>0.25%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Sundae Large</td>
<td>2350</td>
<td>1.20%</td>
<td>2350</td>
<td>1.20%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Mango Ice-cream</td>
<td>8000</td>
<td>40.5%</td>
<td>8000</td>
<td>40.5%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Ice Blue Sundae</td>
<td>2340</td>
<td>1.19%</td>
<td>2340</td>
<td>1.19%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Creamy Litchi Boom</td>
<td>2200</td>
<td>1.11%</td>
<td>2200</td>
<td>1.11%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>Cookies Ice-cream</td>
<td>7000</td>
<td>3.54%</td>
<td>7000</td>
<td>3.54%</td>
<td>0</td>
<td>0.00%</td>
<td>0</td>
<td>0.00%</td>
</tr>
<tr class="collapse row3">
<td>TOP- Wafer</td>
<td>88000</td>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…