(Pronounced: Serious)
A seriously powerful Angular grid — for developers who demand control, flexibility, and performance.
Part of the Cerious Widgets collection.
See: https://ryoucerious.github.io/cerious-widgets/
Cerious Grid isn't just a table — it's a full-blown, enterprise-grade Angular grid built for speed, extensibility, and total customization.
With a modern plugin system, rich templating support, and no heavy dependencies, it's everything you need to build real-world data-intensive apps.
- 🔁 Virtual Scrolling — Render thousands of rows without performance hits
- 🔄 Pagination
- 🌐 Server-Side Mode — Pagination, Filtering, Virtual Scroll
↕️ Column Resizing and Pinning- 🔗 Drag-and-Drop Columns
- 🧱 Grouped Column Headers
- 📊 Group By — with drag-to-group UI
- 🧬 Nested Rows — Use any Angular template for children (tables, charts, etc.)
- 🧠 Multi-Column Sorting — Ctrl/Meta click to multi-sort
- 🧹 Column Filtering — Text, number, select, date
- 🧾 Custom Templates — Cells, headers, rows — fully yours
- 💡 Directive-Based Plugin Templates
- 🧩 Pluggable Architecture — Add or override behavior without touching core
- 💾 Save & Restore Views — Favorites, state, layout
- 📦 Excel Export — One-liner export with
write-excel-file - 🔓 MIT Licensed and Fully Open Source
npm install ngx-cerious-widgetsImport via module or import directly into into your component.
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
CeriousWidgetsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }Add the styles to angular.json
"node_modules/ngx-cerious-widgets/styles/grid-styles-generated.scss",<cw-grid
[data]="data"
[gridOptions]="gridOptions"
(rowClick)="onRowClick($event)">
</cw-grid>export class MyPlugin implements GridPlugin {
onInit(api: GridApi) {
api.onCellClick.subscribe(cell => {
console.log('Cell clicked:', cell);
});
}
}You can also consume templates using Angular @Directive()s to inject content dynamically.
StackBlitz playground: https://stackblitz.com/edit/stackblitz-starters-5jca2yeb?file=angular.json
We welcome your ideas, plugins, and PRs.
Head to the issues page to suggest features or report bugs.
MIT — free for personal and commercial projects.
Cerious Grid was built by a developer who’s spent nearly two decades in enterprise front-end development.
If you’ve ever been frustrated by AG Grid’s licensing or boxed in by rigid tables — this is for you.
