skills/.system/jwebmp-aggrid-enterprise/SKILL.md
AG Grid Enterprise integration for JWebMP with premium data grid features. Extends aggrid skill with row grouping, aggregation, pivoting, master/detail, server-side row model, Excel export, range selection, clipboard operations, status bar, charts integration, and advanced filtering. Requires AG Grid Enterprise license. Use when working with AG Grid Enterprise features, complex data grids, pivoting, grouping, or advanced grid capabilities.
npx skillsauth add guicedee/ai-rules jwebmp-aggrid-enterpriseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
AG Grid Enterprise integration for JWebMP with premium data grid features.
gridOptions
.setRowGroupPanelShow("always")
.setGroupSelectsChildren(true)
.setColumnDefs(List.of(
new ColumnDef()
.setField("country")
.setRowGroup(true)
.setHide(true),
new ColumnDef()
.setField("sales")
.setAggFunc("sum")
));
new ColumnDef()
.setField("amount")
.setAggFunc("sum") // sum, min, max, avg, count, first, last
.setEnableValue(true);
gridOptions
.setPivotMode(true)
.setColumnDefs(List.of(
new ColumnDef()
.setField("country")
.setPivot(true),
new ColumnDef()
.setField("year")
.setRowGroup(true),
new ColumnDef()
.setField("sales")
.setAggFunc("sum")
));
gridOptions
.setMasterDetail(true)
.setDetailCellRendererParams(new DetailCellRendererParams()
.setDetailGridOptions(detailGridOptions)
.setGetDetailRowData(callbackFunction));
gridOptions
.setRowModelType("serverSide")
.setServerSideStoreType("full") // full, partial
.setCacheBlockSize(100)
.setMaxBlocksInCache(10);
gridOptions.exportToExcel(new ExcelExportParams()
.setFileName("data.xlsx")
.setSheetName("Sheet1")
.setAuthor("JWebMP")
.setColumnWidth(100));
gridOptions
.setEnableRangeSelection(true)
.setEnableRangeHandle(true)
.setEnableFillHandle(true);
gridOptions.setStatusBar(new StatusBarConfig()
.setStatusPanels(List.of(
new StatusPanelDef()
.setStatusPanel("agTotalAndFilteredRowCountComponent"),
new StatusPanelDef()
.setStatusPanel("agAggregationComponent")
)));
<dependency>
<groupId>com.jwebmp.plugins</groupId>
<artifactId>aggrid-enterprise</artifactId>
</dependency>
Note: Requires valid AG Grid Enterprise license.
GridOptions.setLicenseKey("your-license-key");
com.jwebmp.plugins.aggridenterprisedevelopment
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).
tools
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Codex's capabilities with specialized knowledge, workflows, or tool integrations.
development
WebAwesome icon integration for JWebMP — modern, open-source icon library. Provides 1,500+ icons with solid/regular styles, sizing, rotation, animation, and CSS utilities. Drop-in FontAwesome alternative with fresh designs. Use when working with WebAwesome icons, modern icon designs, or as FontAwesome alternative in JWebMP applications.
development
WebAwesome Pro integration for JWebMP with premium icons and features. Extends jwebmp-webawesome with additional styles, premium icons, and advanced features. Use when working with WebAwesome Pro icons or premium WebAwesome features in JWebMP applications.