I am new to lightning design system.
I am using a responsive data table for both directions:
- lrt
- rtl
The horizontal table is working perfectly fine in both direction.
But in the vertical table view, rtl direction is not working. The vertical table is automatically comes based on view(responsive table).
I am trying to find documentation for this, but not getting any clue or help from the documentation.
<table class="slds-table slds-table--bordered slds-table--cell-buffer">
<thead>
<tr>
<th scope="col" ng-repeat='val in data' ng-hide='!val.isDisp'>
<div class="slds-truncate">{{::val}}</div>
</th>
<th width="70px"/>
</tr>
</thead>
<tbody class='slds-block_table-body'>
<tr name="form">
<td ng-style="{'padding':'0px'}">
<span class="icon-save"></span>
</td>
<td ng-repeat='row in details'>
{{::row}}
</td>
</tr>
</tbody>
</table>
Please suggest how it can achieve for the vertical view.