> ## Content Index
> Fetch the complete content index at: https://www.namastesalesforce.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# lwc-datatable-plus
- URL: https://www.namastesalesforce.com/projects/lwc-datatable-plus/
- Published: 2026-02-13T09:00:00.000Z
- Updated: 2026-02-13T09:00:00.000Z
- Description: lightning-datatable with the missing pieces: server-side pagination, column filters, saved views and CSV export — as one drop-in component.
- Author: Swarnil Singhai
- Tags: LWC, #project, #project-lang-javascript, #project-stars-204, #now, #Import 2026-09-03 19:13

lightning-datatable with the missing pieces: server-side pagination, column filters, saved views and CSV export — as one drop-in component.

## What it adds

The standard datatable stops at sorting. This wraps it with cursor-based pagination against your Apex, per-column filter inputs, view definitions users can save, and a client-side CSV export that respects the current filters.

## Install

Deploy the component and its Apex controller interface, implement one method returning a page of rows, and replace your lightning-datatable tag. The README walks a working Account table in fifteen minutes.

## Design notes

Pagination is cursor-based (keyset on Id) rather than OFFSET, so page 40 of a million rows costs the same as page one. Saved views serialise to a custom object, one record per user per table.