Interactive tables with sorting, searching, and pagination.
Wrap a .sui-table in .sui-datatable and add a footer with info and pagination.
| # | Name | Role | Status | |
|---|---|---|---|---|
| 1 | Alice Martin | alice@example.com | Admin | Active |
| 2 | Bob Chen | bob@example.com | Editor | Active |
| 3 | Carol Davis | carol@example.com | Viewer | Pending |
| 4 | David Kim | david@example.com | Editor | Active |
| 5 | Eva Novak | eva@example.com | Admin | Inactive |
| 6 | Frank Li | frank@example.com | Viewer | Active |
| 7 | Grace Park | grace@example.com | Editor | Pending |
| 8 | Henry Wells | henry@example.com | Viewer | Active |
<div class="sui-datatable">
<table class="sui-table">
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Email</th>
<th>Role</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Alice Martin</td>
<td>alice@example.com</td>
<td>Admin</td>
<td><span class="sui-badge sui-badge-success">Active</span></td>
</tr>
<!-- more rows... -->
</tbody>
</table>
<div class="sui-datatable-footer">
<div class="sui-datatable-info"></div>
<div class="sui-datatable-pagination"></div>
</div>
</div>
Add data-sort="string" or data-sort="number" to <th> elements. Click a header to sort ascending, click again for descending.
| # | Product | Category | Price | Stock |
|---|---|---|---|---|
| 1 | Wireless Headphones | Audio | $79 | 142 |
| 2 | Mechanical Keyboard | Peripherals | $129 | 87 |
| 3 | USB-C Hub | Accessories | $45 | 310 |
| 4 | Webcam HD | Peripherals | $65 | 53 |
| 5 | Monitor Stand | Accessories | $35 | 205 |
| 6 | Bluetooth Speaker | Audio | $55 | 178 |
| 7 | Laptop Sleeve | Accessories | $25 | 420 |
| 8 | Gaming Mouse | Peripherals | $59 | 96 |
<div class="sui-datatable">
<table class="sui-table">
<thead>
<tr>
<th data-sort="number">#</th>
<th data-sort="string">Product</th>
<th data-sort="string">Category</th>
<th data-sort="number">Price</th>
<th data-sort="number">Stock</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Wireless Headphones</td>
<td>Audio</td>
<td>$79</td>
<td>142</td>
</tr>
<!-- more rows... -->
</tbody>
</table>
<div class="sui-datatable-footer">
<div class="sui-datatable-info"></div>
<div class="sui-datatable-pagination"></div>
</div>
</div>
Add a .sui-datatable-toolbar with a search input to filter rows in real time.
| # | Name | Department | Location | Status |
|---|---|---|---|---|
| 1 | Sarah Johnson | Engineering | New York | Active |
| 2 | Michael Brown | Design | London | Active |
| 3 | Emily Wilson | Marketing | Tokyo | On Leave |
| 4 | James Taylor | Engineering | Berlin | Active |
| 5 | Lisa Anderson | Sales | New York | Active |
| 6 | Robert Garcia | Engineering | London | Inactive |
| 7 | Maria Lopez | Design | Tokyo | Active |
| 8 | Thomas White | Marketing | Berlin | On Leave |
| 9 | Jennifer Lee | Sales | New York | Active |
| 10 | Daniel Clark | Engineering | London | Active |
<div class="sui-datatable">
<div class="sui-datatable-toolbar">
<div class="sui-datatable-search">
<svg class="sui-datatable-search-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="11" cy="11" r="8"/>
<line x1="21" y1="21" x2="16.65" y2="16.65"/>
</svg>
<input type="text" placeholder="Search employees...">
</div>
</div>
<table class="sui-table">
<thead>
<tr>
<th data-sort="number">#</th>
<th data-sort="string">Name</th>
<th data-sort="string">Department</th>
<th data-sort="string">Location</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Sarah Johnson</td>
<td>Engineering</td>
<td>New York</td>
<td><span class="sui-badge sui-badge-success">Active</span></td>
</tr>
<!-- more rows... -->
</tbody>
</table>
<div class="sui-datatable-footer">
<div class="sui-datatable-info"></div>
<div class="sui-datatable-pagination"></div>
</div>
</div>
Combine search, sortable columns, per-page selector, and pagination for a complete data table experience.
| Order | Customer | Product | Amount | Date | Status |
|---|---|---|---|---|---|
| #1001 | Alice Martin | Pro Subscription | $299 | 2026-03-01 | Completed |
| #1002 | Bob Chen | Team License | $599 | 2026-03-02 | Completed |
| #1003 | Carol Davis | Starter Plan | $49 | 2026-03-02 | Pending |
| #1004 | David Kim | Enterprise | $1,299 | 2026-03-03 | Completed |
| #1005 | Eva Novak | Pro Subscription | $299 | 2026-03-04 | Refunded |
| #1006 | Frank Li | Team License | $599 | 2026-03-04 | Completed |
| #1007 | Grace Park | Starter Plan | $49 | 2026-03-05 | Completed |
| #1008 | Henry Wells | Pro Subscription | $299 | 2026-03-05 | Pending |
| #1009 | Ivy Torres | Enterprise | $1,299 | 2026-03-06 | Completed |
| #1010 | Jack Murphy | Team License | $599 | 2026-03-06 | Completed |
| #1011 | Karen Scott | Starter Plan | $49 | 2026-03-07 | Pending |
| #1012 | Leo Adams | Pro Subscription | $299 | 2026-03-07 | Completed |
| #1013 | Mia Rivera | Enterprise | $1,299 | 2026-03-08 | Refunded |
| #1014 | Noah Cooper | Team License | $599 | 2026-03-08 | Completed |
| #1015 | Olivia Reed | Starter Plan | $49 | 2026-03-09 | Completed |
<div class="sui-datatable">
<div class="sui-datatable-toolbar">
<div class="sui-datatable-search">
<svg class="sui-datatable-search-icon" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<circle cx="11" cy="11" r="8"/>
<line x1="21" y1="21" x2="16.65" y2="16.65"/>
</svg>
<input type="text" placeholder="Search orders...">
</div>
<div class="sui-datatable-perpage">
<span>Show</span>
<select>
<option value="5" selected>5</option>
<option value="10">10</option>
<option value="25">25</option>
</select>
<span>entries</span>
</div>
</div>
<table class="sui-table">
<thead>
<tr>
<th data-sort="number">Order</th>
<th data-sort="string">Customer</th>
<th data-sort="string">Product</th>
<th data-sort="number">Amount</th>
<th data-sort="string">Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>#1001</td>
<td>Alice Martin</td>
<td>Pro Subscription</td>
<td>$299</td>
<td>2026-03-01</td>
<td><span class="sui-badge sui-badge-success">Completed</span></td>
</tr>
<!-- more rows... -->
</tbody>
</table>
<div class="sui-datatable-footer">
<div class="sui-datatable-info"></div>
<div class="sui-datatable-pagination"></div>
</div>
</div>
Combine with existing table variants like .sui-table-striped and .sui-table-compact.
| # | Task | Assignee | Priority | Progress |
|---|---|---|---|---|
| 1 | Design landing page | Alice | High | Blocked |
| 2 | Write API docs | Bob | Medium | In Progress |
| 3 | Fix login bug | Carol | High | Done |
| 4 | Update database schema | David | Low | In Progress |
| 5 | Add unit tests | Eva | Medium | Done |
| 6 | Review pull requests | Frank | High | In Progress |
| 7 | Deploy to staging | Grace | Medium | Done |
| 8 | Performance audit | Henry | Low | Blocked |
| 9 | Migrate to TypeScript | Ivy | High | In Progress |
| 10 | Set up CI/CD pipeline | Jack | Medium | Done |
| 11 | Create onboarding flow | Karen | Low | In Progress |
| 12 | Optimize images | Leo | Low | Done |
<div class="sui-datatable">
<div class="sui-datatable-toolbar">
<div class="sui-datatable-search">
<svg class="sui-datatable-search-icon" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2">
<circle cx="11" cy="11" r="8"/>
<line x1="21" y1="21" x2="16.65" y2="16.65"/>
</svg>
<input type="text" placeholder="Search...">
</div>
<div class="sui-datatable-perpage">
<span>Show</span>
<select>
<option value="5" selected>5</option>
<option value="10">10</option>
</select>
<span>entries</span>
</div>
</div>
<table class="sui-table sui-table-striped sui-table-compact">
<thead>
<tr>
<th data-sort="number">#</th>
<th data-sort="string">Task</th>
<th data-sort="string">Assignee</th>
<th data-sort="string">Priority</th>
<th>Progress</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Design landing page</td>
<td>Alice</td>
<td>High</td>
<td><span class="sui-badge sui-badge-danger">Blocked</span></td>
</tr>
<!-- more rows... -->
</tbody>
</table>
<div class="sui-datatable-footer">
<div class="sui-datatable-info"></div>
<div class="sui-datatable-pagination"></div>
</div>
</div>
This is a neumorphic modal dialog. It features backdrop blur, smooth animations, and focus trap. Press Escape or click outside to close.
Your session will expire in 5 minutes. Would you like to stay signed in?
This action cannot be undone. This will permanently delete the item and remove all associated data.
This modal takes up the entire viewport. Useful for immersive content, editors, or media viewers.
Press Escape or click the close button to dismiss.
By accessing and using this service, you accept and agree to be bound by the terms and provision of this agreement. In addition, when using these particular services, you shall be subject to any posted guidelines or rules applicable to such services. Any participation in this service will constitute acceptance of this agreement.
Permission is granted to temporarily download one copy of the materials on this website for personal, non-commercial transitory viewing only. This is the grant of a license, not a transfer of title, and under this license you may not modify or copy the materials, use the materials for any commercial purpose, attempt to reverse engineer any software, or remove any copyright notations.
The materials on this website are provided on an 'as is' basis. We make no warranties, expressed or implied, and hereby disclaim and negate all other warranties including, without limitation, implied warranties or conditions of merchantability, fitness for a particular purpose, or non-infringement of intellectual property.
In no event shall this company or its suppliers be liable for any damages (including, without limitation, damages for loss of data or profit, or due to business interruption) arising out of the use or inability to use the materials, even if we have been notified orally or in writing of the possibility of such damage.
The materials appearing on this website could include technical, typographical, or photographic errors. We do not warrant that any of the materials on its website are accurate, complete or current. We may make changes to the materials contained on its website at any time without notice.
We have not reviewed all of the sites linked to this website and are not responsible for the contents of any such linked site. The inclusion of any link does not imply endorsement. Use of any such linked web site is at the user's own risk.
We may revise these terms of service for this website at any time without notice. By using this website you are agreeing to be bound by the then current version of these terms of service. Any changes will be posted on this page with an updated revision date.
These terms and conditions are governed by and construed in accordance with applicable laws and you irrevocably submit to the exclusive jurisdiction of the courts in that location. If any provision of these terms shall be unlawful, void, or unenforceable, then that provision shall be deemed severable and shall not affect the validity of the remaining provisions.
Clicking outside this modal won't close it. Instead, the modal will shake to indicate it requires explicit action. Use the close button or press Escape to dismiss.
This is a default right-side sheet. It slides in from the right edge of the screen with a blurred backdrop.
Sheets are great for navigation menus, settings panels, detail views, and forms that don't need to interrupt the main content flow.
This sheet slides down from the top. Great for announcements, notification panels, or search interfaces.
This is a small (280px) right-side sheet.
This is a large (480px) right-side sheet. Great for forms, detail views, or complex content.
Clicking outside this sheet won't close it. The sheet will shake to indicate it requires explicit action. Use the close button or press Escape.