Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
ag-grid-aurelia
Advanced tools
This project contains the Aurelia Component for use with ag-Grid.
Please refer to www.ag-grid.com for full documentation on ag-Grid and Aurelia integration. Also take a look a the provided examples at https://github.com/ag-grid/ag-grid-aurelia-example.
Framework specific Getting Started guides: Angular 1 | Angular 2 | Aurelia Javascript | React | TypeScript VueJS | Web Components
In your main entry.
aurelia.use
.standardConfiguration()
.plugin('ag-grid-aurelia');
In your view model
import {GridOptions} from 'ag-grid';
export class MyGridPage {
public gridOptions:GridOptions;
constructor() {
this.gridOptions = <GridOptions>{};
this.gridOptions.rowData = [{id: 1, name: 'Shane'}, {id: 2, name: 'Sean'}];
}
public onGridReady(){
console.log('Grid is ready!!');
console.log('1st col field = ' + this.gridOptions.columnDefs[0].field);
}
public onIdClicked(row){
console.log('id clicked ' + row.id);
}
}
In your view template. Here we are adding columns using markup. ColumnDefs can be added from your view model if you wish.
<template>
<div style="width: 100%; height: 350px;">
<ag-grid-aurelia grid-options.bind="gridOptions" class="ag-material"
row-height.bind="48"
grid-ready.call="onGridReady()">
<ag-grid-column header-name="My Group Column">
<ag-grid-column header-name="Id" field="id">
<ag-cell-template>
<button md-button class="btn accent" click.delegate="params.context.onIdClicked(params.data)">${params.value}</button>
</ag-cell-template>
</ag-grid-column>
<ag-grid-column header-name="Name" field="name" >
</ag-grid-column>
</ag-grid-column>
</ag-grid-aurelia>
</div>
</template>
To build:
npm install
npm install gulp -g
npm install aurelia-framework
npm install ag-grid
(or: npm install aurelia-framework@1.0.x && npm install ag-grid@13.0.2)
npm run build
FAQs
ag-Grid Aurelia Component
The npm package ag-grid-aurelia receives a total of 121 weekly downloads. As such, ag-grid-aurelia popularity was classified as not popular.
We found that ag-grid-aurelia demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.