You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.
Hi,
I'm using ag-grid to show and edit some records.
In my ag-grid defination, I'm adding a cellEditorComponent as:
this.columnDefs = this.columns.map((el, i) => { return { headerName: el.attributeName, attributeId: el.attributeId, field: el.field, resizable: true, editable: true, cellEditorSelector: (params) => { return { component: TextBoxEditor } } } })
In my TextBoxEditor.vue, here is the following code:
`
While editing, I'm getting the error as 'Params are not defined'
The text was updated successfully, but these errors were encountered: