ag-grid / ag-grid-aurelia

Aurelia wrapper for ag-Grid project
MIT License
23 stars 8 forks source link

Cannot render in view #8

Closed joungmin92 closed 7 years ago

joungmin92 commented 7 years ago

I have problems when using css ag-gird. Framework used is aurelia / ES6. in modelview declared like this `import { GridOptions } from '../../../../jspm_packages/npm/ag-grid@8.1.1'; export class CommentMngCS {

columnDefs = [{
    headerName: "Make",
    field: "make"
}];

rowData = [{
    make: "Toyota"}];

constructor() {
    this.gridOptions = GridOptions;
    this.gridOptions = {
        columnDefs: this.columnDefs,
        rowData: this.rowData,
        rowSelection: 'multiple'
    };  console.log('@@@@@', this.gridOptions);

}`

``

seanlandsman commented 7 years ago

Closing due to inactivity - please feel free to open a new issue if this is still a problem and I'll take a look