HTML table¶
HTML tables are based on the native HTML table element and are intended for simple, mostly static data.
Usage¶
HTML table is the lowest-complexity option. Because it is based on the native HTML table element, it comes with some inherent limitations.
- The header is not sticky when vertical scrolling is used.
- Column widths cannot be resized by users.
- Pagination is not supported.
- There is no built-in support for DOM or data virtualization, unlike ngx-datatable.
- Performance degrades with larger datasets, depending on DOM complexity and hardware.

When to use¶
- Use it when the dataset is small.
- When the content is mostly read-only.
- When advanced interactions are not required.
Code¶
For simple HTML tables the general Bootstrap Tables documentation applies. Add the CSS class table-hover for row hover effect. The theme comes with the following styling for table:
Except where otherwise noted, content on this site is licensed under MIT License.