Socket
Socket
Sign inDemoInstall

@ag-grid-enterprise/core

Package Overview
Dependencies
1
Maintainers
3
Versions
63
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ag-grid-enterprise/core


Version published
Weekly downloads
220K
increased by0.01%
Maintainers
3
Install size
25.1 MB
Created
Weekly downloads
 

Package description

What is @ag-grid-enterprise/core?

@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.

What are @ag-grid-enterprise/core's main functionalities?

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);

Other packages similar to @ag-grid-enterprise/core

Readme

Source

AG Grid HTML5 Grid trusted by the community, built for enterprise

CDNJS Github Stars Twitter

ModuleInfo
@ag-grid-enterprise/corenpm
Bundle Phobia
Quality Gate Status

AG Grid Enterprise


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.

Image of AG Grid showing filtering and grouping enabled.

Features

Besides 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 *

  • Accessibility support

  • 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

  • State Persistence

  • Keyboard Navigation

  • Data Export to CSV

  • Data Export to Excel *

  • Excel-like Pivoting *

  • Row Reordering

  • Copy / Paste

  • Column Spanning

  • Pinned Rows

  • Full Width Rows

  • Integrated Charting

  • Sparklines

  • 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.

Issue Reporting

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

Asking Questions

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.

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 listing or send your application to info@ag-grid.com.

License

Please refer to the LICENSE and SUPPORT_AND_MAINTENANCE.

Keywords

FAQs

Last updated on 23 Aug 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc