Search
Quick Commands
run:diagnostics Run all system checks
db:connect Connect to primary DB
cache:clear Clear application cache
users:list Show all active users
Notifications

Stay on top of recent system events and updates.

  • Notification avatar
    System Update Available

    Version 2.4.1 is ready to install with new features.

    2 minutes ago

  • AB
    New User Registration

    Alex Brown from Canada has joined the platform.

    15 minutes ago

  • Notification avatar
    Backup Completed

    Daily backup has been successfully completed.

    1 hour ago

  • Notification avatar
    Security Alert

    Unusual login activity detected from new location.

    3 hours ago

  • Notification avatar
    Monthly Report Ready

    Your analytics report for September is now available.

    Yesterday

  • MJ
    Server Maintenance

    Scheduled maintenance will begin at 2:00 AM EST.

    2 days ago

table_chart

Tables & Data Grids

Comprehensive table solutions for modern web applications

Powerful table components for every use case

UltraViolet provides a complete suite of table components, from simple Bootstrap tables to advanced data grids with sorting, filtering, and pagination. Choose the right solution for your application's needs.

table_chart
Bootstrap Tables
Clean, responsive table designs
storage
Advanced Data Tables
Sorting, pagination, and search
grid_view
Grid.js Integration
Modern, framework-agnostic grids
devices
Mobile Responsive
Optimized for all screen sizes
table_chart
Key Features
  • check_circleMultiple table styles
  • check_circleBuilt-in sorting
  • check_circlePagination support
  • check_circleSearch functionality
  • check_circleResponsive design
  • check_circleDark theme support
table_chart
Basic Tables

Bootstrap table variations

Simple, clean table designs with various Bootstrap classes including striped, bordered, hoverable, and dark theme variants.

  • check_circleStriped tables
  • check_circleBordered tables
  • check_circleHoverable rows
  • check_circleDark theme support
View Examples
storage
Data Tables

Advanced table functionality

Enhanced tables with built-in sorting, pagination, search functionality, and JSON data loading capabilities.

  • check_circleColumn sorting
  • check_circlePagination
  • check_circleGlobal search
  • check_circleJSON data loading
View Examples
grid_view
Grid.js

Modern data grid library

Powerful, lightweight, and framework-agnostic table library with advanced features like custom formatters and plugins.

  • check_circleCustom formatters
  • check_circlePlugin system
  • check_circleTypeScript built
  • check_circleFramework agnostic
View Examples

Quick Start Examples

Basic Bootstrap Table

Simple table with Bootstrap classes for styling and responsiveness.

<div class="table-responsive">
    <table class="table table-striped table-hover">
        <thead>
            <tr>
                <th>Name</th>
                <th>Email</th>
                <th>Status</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>John Doe</td>
                <td>john@example.com</td>
                <td><span class="badge bg-success">Active</span></td>
            </tr>
        </tbody>
    </table>
</div>
Grid.js Implementation

Modern data grid with sorting, searching, and pagination.

new gridjs.Grid({
    columns: [
        { name: "Name", width: "150px" },
        { name: "Email", width: "200px" },
        { 
            name: "Status", 
            formatter: (cell) => gridjs.html(
                `<span class="badge bg-success">${cell}</span>`
            )
        }
    ],
    data: [
        ["John Doe", "john@example.com", "Active"],
        ["Jane Smith", "jane@example.com", "Inactive"]
    ],
    search: true,
    sort: true,
    pagination: { limit: 10 }
}).render(document.getElementById("grid"));