mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
83 lines
2.8 KiB
83 lines
2.8 KiB
@page
|
|
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.TablesModel
|
|
@{
|
|
ViewData["Title"] = "Tables";
|
|
}
|
|
|
|
<h2>Tables</h2>
|
|
|
|
<p>Based on <a href="https://getbootstrap.com/docs/4.1/content/Tables/" target="_blank"> Bootstrap Tables</a>.</p>
|
|
|
|
<h4># Tables Examples</h4>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
|
|
<abp-table striped-rows="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>
|
|
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<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>
|
|
</pre>
|
|
</div>
|
|
</div>
|