Examples
1. Quick Start: Products Table
import { defineTable } from '@tablecraft/engine';
import { products } from '../db/schema';
export const productsConfig = defineTable(products)
.name('products')
.search('name')
.sort('-createdAt')
.pageSize(20)
.toConfig();Advanced Custom Filters with URL State
2. Type-Safe with Codegen
3. The "Kitchen Sink" User Table
4. Analytics Report (Group By)
5. Nested E-commerce Fetch
6. Recursive Category Tree
7. Date Filtering with Custom Column
8. Disable Date Filter
9. Custom Toolbar
10. Conditional Column Visibility
11. Custom Column Rendering (Column Overrides)
12. Row Actions
13. E-commerce Dashboard
Last updated
Was this helpful?
