javascript - Open page with a pre expanded table row -
i have bootstrap table expandable rows, want is, opening page expanded row (say first row).
below table using.
<table class="table no-padding-table"> <thead> <tr> <th>date</th> <th>date2</th> <th>date3</th> </tr> <tbody> <tr data-toggle="collapse" data-target="#extend{{$index}}" ng-repeat-start="date in dates"> <td> <p>{{date}}</p> </td> <td> <p>{{date}}</p> </td> <td> <p>{{date}}</p> </td> </tr> <tr ng-repeat-end=""> <td colspan="3" class="hiddenrow"> <div class="accordian-body collapse"> test </div> </td> </tr> </tbody>
Comments
Post a Comment