admin

Please wait...

Bootstrap Table

grid_on Bootstrap Table Overview

MediDash uses Bootstrap tables to display data in a clear and organized manner. This guide will walk you through the process of creating a basic Bootstrap table, including the necessary HTML structure and component-side code.

code HTML Structure

The following HTML code demonstrates how to create a basic Bootstrap table:


<table class="table">
    <thead>
        <tr>
            <th scope="col">#</th>
            <th scope="col">First</th>
            <th scope="col">Last</th>
            <th scope="col">Handle</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <th scope="row">1</th>
            <td>Mark</td>
            <td>Otto</td>
            <td>@mdo</td>
        </tr>
        <tr>
            <th scope="row">2</th>
            <td>Jacob</td>
            <td>Thornton</td>
            <td>@fat</td>
        </tr>
        <tr>
            <th scope="row">3</th>
            <td>Larry</td>
            <td>the Bird</td>
            <td>@twitter</td>
        </tr>
    </tbody>
</table>

link Helpful Resources

For more information on using Bootstrap tables in Angular, please refer to the official documentation:

Topic URL
Bootstrap Tables https://getbootstrap.com/docs/5.0/content/tables/

Referral Url