@page @model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.TablesModel @{ ViewData["Title"] = "Tables"; }

Tables

Based on Bootstrap Tables.

# Tables Examples

# First Last Handle 1 Mark Otto mdo 2 Jacob Thornton fat 3 Larry the Bird twitter
        <abp-table striped-rows="true" small="true" hoverable-rows="true" responsive-sm="true">
            <thead theme="Dark">
            <tr>
                <th scope="Column">#</th>
                <th scope="Column">First</th>
                <th scope="Column">Last</th>
                <th scope="Column">Handle</th>
            </tr>
            </thead>
            <tbody>
            <tr>
                <th scope="Row">1</th>
                <td>Mark</td>
                <td>Otto</td>
                <td  abp-table-style="Danger">mdo</td>
            </tr>
            <tr abp-table-style="Warning">
                <th scope="Row">2</th>
                <td>Jacob</td>
                <td>Thornton</td>
                <td>fat</td>
            </tr>
            <tr>
                <th scope="Row">3</th>
                <td abp-table-style="Success">Larry</td>
                <td>the Bird</td>
                <td>twitter</td>
            </tr>
            </tbody>
        </abp-table>