Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
@ag-grid-enterprise/core
Advanced tools
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
@ag-grid-enterprise/core is a powerful data grid package for building feature-rich and highly customizable data tables in web applications. It offers advanced functionalities such as filtering, sorting, grouping, pivoting, and more, making it suitable for enterprise-level applications.
Filtering
This feature allows users to filter data in the grid based on various criteria. The code sample demonstrates how to set up different types of filters for columns.
const gridOptions = {
columnDefs: [
{ field: 'athlete', filter: 'agTextColumnFilter' },
{ field: 'age', filter: 'agNumberColumnFilter' },
{ field: 'country', filter: 'agSetColumnFilter' }
],
rowData: null
};
// setup the grid after the page has finished loading
const eGridDiv = document.querySelector('#myGrid');
new agGrid.Grid(eGridDiv, gridOptions);
Sorting
This feature allows users to sort data in the grid by clicking on the column headers. The code sample shows how to enable sorting for specific columns.
const gridOptions = {
columnDefs: [
{ field: 'athlete', sortable: true },
{ field: 'age', sortable: true },
{ field: 'country', sortable: true }
],
rowData: null
};
// setup the grid after the page has finished loading
const eGridDiv = document.querySelector('#myGrid');
new agGrid.Grid(eGridDiv, gridOptions);
Grouping
This feature allows users to group rows based on the values in a specific column. The code sample demonstrates how to enable row grouping for a column.
const gridOptions = {
columnDefs: [
{ field: 'athlete' },
{ field: 'age' },
{ field: 'country', rowGroup: true }
],
rowData: null,
groupDefaultExpanded: 1
};
// setup the grid after the page has finished loading
const eGridDiv = document.querySelector('#myGrid');
new agGrid.Grid(eGridDiv, gridOptions);
Pivoting
This feature allows users to pivot data in the grid, transforming rows into columns based on the values in a specific column. The code sample shows how to enable pivot mode and set up a pivot column.
const gridOptions = {
columnDefs: [
{ field: 'athlete' },
{ field: 'age' },
{ field: 'country', pivot: true }
],
rowData: null,
pivotMode: true
};
// setup the grid after the page has finished loading
const eGridDiv = document.querySelector('#myGrid');
new agGrid.Grid(eGridDiv, gridOptions);
Handsontable is a JavaScript data grid component for web applications. It offers similar functionalities such as filtering, sorting, and grouping, but it is known for its Excel-like appearance and behavior. Compared to @ag-grid-enterprise/core, Handsontable is more focused on providing a spreadsheet-like experience.
React Table is a lightweight, fast, and extendable data grid built specifically for React applications. It provides basic functionalities like sorting and filtering but relies on a plugin system for more advanced features. Compared to @ag-grid-enterprise/core, React Table is more modular and flexible but may require more setup for complex use cases.
SlickGrid is a JavaScript grid/spreadsheet component that offers high performance and a rich set of features. It is highly customizable and can handle large datasets efficiently. Compared to @ag-grid-enterprise/core, SlickGrid is more performance-oriented and may require more effort to configure and customize.
Module | Info |
---|---|
@ag-grid-enterprise/core | |
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.
This is not free software, this software is covered by copyright and to use you need a commercial license.
Besides the standard set of features you'd expect from any grid:
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 developers documentation for a complete list of features or visit our official docs for tutorials and feature demos.
If you are an Enterprise customer (or are evaluating AG Grid Enterprise) and wish to report a Bug or raise a new Feature Request please do so on our Support Portal.
To Sign Up: Send an email to accounts@ag-grid.com with your license key
Look for similar problems on StackOverflow using the ag-grid
tag, or refer to our Support Portal. If nothing seems related, post a new message there. Do not use GitHub issues to ask questions.
AG Grid is developed by a team of co-located developers in London. If you want to join the team check out our jobs listing or send your application to info@ag-grid.com.
Please refer to the LICENSE and SUPPORT_AND_MAINTENANCE.
FAQs
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
The npm package @ag-grid-enterprise/core receives a total of 211,643 weekly downloads. As such, @ag-grid-enterprise/core popularity was classified as popular.
We found that @ag-grid-enterprise/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.