Download Latest Version app.27041b87bbb500531583.css.gz (92.6 kB)
Email in envelope

Get an email when there's a new version of adminos

Name Modified Size InfoDownloads / Week
Parent folder
rendering 2023-08-29
headerRendering 2023-08-29
gridBodyComp 2023-08-29
filter 2023-08-29
components 2023-08-29
columns 2023-08-29
constants 2023-08-29
context 2023-08-29
dragAndDrop 2023-08-29
entities 2023-08-29
gridComp 2023-08-29
interfaces 2023-08-29
layout 2023-08-29
misc 2023-08-29
modules 2023-08-29
pagination 2023-08-29
pinnedRowModel 2023-08-29
rowNodeCache 2023-08-29
rowNodes 2023-08-29
styling 2023-08-29
undoRedo 2023-08-29
utils 2023-08-29
valueService 2023-08-29
widgets 2023-08-29
alignedGridsService.d.ts 2023-08-29 829 Bytes
alignedGridsService.js 2023-08-29 12.6 kB
autoScrollService.d.ts 2023-08-29 1.3 kB
autoScrollService.js 2023-08-29 3.9 kB
cellNavigationService.d.ts 2023-08-29 1.2 kB
cellNavigationService.js 2023-08-29 13.2 kB
ctrlsFactory.d.ts 2023-08-29 408 Bytes
ctrlsFactory.js 2023-08-29 2.2 kB
ctrlsService.d.ts 2023-08-29 3.5 kB
ctrlsService.js 2023-08-29 8.2 kB
environment.d.ts 2023-08-29 657 Bytes
environment.js 2023-08-29 6.5 kB
eventKeys.d.ts 2023-08-29 7.8 kB
eventKeys.js 2023-08-29 9.5 kB
events.d.ts 2023-08-29 15.1 kB
events.js 2023-08-29 235 Bytes
eventService.d.ts 2023-08-29 1.4 kB
eventService.js 2023-08-29 8.3 kB
focusService.d.ts 2023-08-29 4.2 kB
focusService.js 2023-08-29 21.5 kB
functions.d.ts 2023-08-29 341 Bytes
functions.js 2023-08-29 1.0 kB
grid.d.ts 2023-08-29 1.4 kB
grid.js 2023-08-29 18.2 kB
gridApi.d.ts 2023-08-29 42.1 kB
gridApi.js 2023-08-29 92.2 kB
gridOptionsWrapper.d.ts 2023-08-29 17.6 kB
gridOptionsWrapper.js 2023-08-29 72.5 kB
iLogger.d.ts 2023-08-29 215 Bytes
iLogger.js 2023-08-29 197 Bytes
logger.d.ts 2023-08-29 580 Bytes
logger.js 2023-08-29 3.0 kB
main.d.ts 2023-08-29 19.6 kB
main.js 2023-08-29 11.1 kB
propertyKeys.d.ts 2023-08-29 1.1 kB
propertyKeys.js 2023-08-29 8.9 kB
selectionService.d.ts 2023-08-29 1.8 kB
selectionService.js 2023-08-29 14.7 kB
sortController.d.ts 2023-08-29 1.1 kB
sortController.js 2023-08-29 9.3 kB
templateService.d.ts 2023-08-29 438 Bytes
templateService.js 2023-08-29 4.3 kB
vanillaFrameworkOverrides.d.ts 2023-08-29 891 Bytes
vanillaFrameworkOverrides.js 2023-08-29 1.7 kB
Totals: 68 Items   447.0 kB 0

alt text

CDNJS Github Stars Twitter

Module Info
ag-grid-community npm
Bundle Phobia
Quality Gate Status
ag-grid-enterprise npm
Bundle Phobia
Quality Gate Status

AG Grid

AG Grid is a fully-featured and highly customizable JavaScript data grid. It delivers outstanding performance, has no third-party dependencies and integrates smoothly with all major JavaScript frameworks.

Here's how our grid looks with multiple filters and grouping enabled:

alt text

Features

In addition to the standard set of features you'd expect from any grid:

  • Column Interactions (resize, reorder, and pin columns)
  • Pagination
  • Sorting
  • Row Selection

Here are some of the features that make AG Grid stand out:

  • Grouping / Aggregation *
  • Custom Filtering
  • In-place Cell Editing
  • Records Lazy Loading *
  • Server-Side Records Operations *
  • Live Stream Updates
  • Hierarchical Data Support & Tree View *
  • Customizable Appearance
  • Customizable Cell Contents
  • Excel-like Pivoting *
  • State Persistence
  • Keyboard Navigation
  • Data Export to CSV
  • Data Export to Excel *
  • Row Reordering
  • Copy / Paste
  • Column Spanning
  • Pinned Rows
  • Full Width Rows

* The features marked with an asterisk are available in the Enterprise version only.

Check out the developer documentation for a complete list of features or visit our official docs for tutorials and feature demos.

Looking for a framework specific solution?

Getting started

Install dependencies

$ npm install --save ag-grid-community

Add a placeholder to HTML

<div id="myGrid" style="height: 150px; width: 600px" class="ag-theme-alpine"></div>

Import the grid and styles

import { Grid } from 'ag-grid-community';

import 'ag-grid-community/dist/styles/ag-grid.css';
import 'ag-grid-community/dist/styles/ag-theme-alpine.css';

Set configuration

var gridOptions = {
    columnDefs: [
        { headerName: 'Make', field: 'make' },
        { headerName: 'Model', field: 'model' },
        { headerName: 'Price', field: 'price' }
    ],
    rowData: [
        { make: 'Toyota', model: 'Celica', price: 35000 },
        { make: 'Ford', model: 'Mondeo', price: 32000 },
        { make: 'Porsche', model: 'Boxter', price: 72000 }
    ]
};

Initialise the grid

var eGridDiv = document.querySelector('#myGrid');
new Grid(eGridDiv, this.gridOptions);

For more information on how to integrate the grid into your project see TypeScript - Building with Webpack 2.

Issue Reporting

If you have found a bug, please report it in this repository's issues section. If you're using the Enterprise version, please use the private ticketing system to do that. For more information on support please see our dedicated support page.

Asking Questions

Look for similar problems on StackOverflow using the ag-grid tag. If nothing seems related, post a new message there. Please do not use GitHub issues to ask questions.

Contributing

AG Grid is developed by a team of co-located developers in London. If you want to join the team check out our jobs board or send your application to info@ag-grid.com.

License

This project is licensed under the MIT license. See the LICENSE file for more info.

Source: README.md, updated 2023-08-29