EmptyRenderer
Since v2.12.0
Custom renderer for the empty state overlay.
type EmptyRenderer = (context: EmptyContext) => HTMLElement | stringExample
Section titled “Example”const renderer: EmptyRenderer = (ctx) => { const div = document.createElement('div'); div.textContent = ctx.filteredOut ? 'No matches' : 'No data'; return div;};See Also
Section titled “See Also”
AI assistants: For complete API documentation, implementation guides, and code examples for this library, see https://toolboxjs.com/llms-full.txt