I Have dropdown in table cells, how to add dorpdown value to a custom filter pane

I Have dropdown in table cells, how to add dorpdown value to a custom filter pane

naveenkumar123.nknaveenkumar123.nk Posts: 3Questions: 1Answers: 0
edited June 2020 in Free community support
<div class="container">
    <div class="row">
<table class="table table-striped table-bordered" id="myTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>Seed Received</th>
    </tr>
</thead>
<tbody>
    <td><div class="dropdown">
  <button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Seed Status
  </button>
  <div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
  <label class="form-check-label dropdown-item">
    Seed 1
  </label>
  <label class="form-check-label dropdown-item">
  Seed 2
  </label>
  </div>
</div></td>
</tbody>
<tfoot>
<tr>
<th>Seed Received</th>
    </tr>
</tfoot>
</table>
</div>
</div>

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.