ag-grid-vue is the adaptation of ag-grid, a fully-featured and highly customizable JavaScript data grid, for the Vue framework. Use this tag for questions about the usage of ag-grid in Vue specifically.
Questions tagged [ag-grid-vue]
118 questions
4
votes
1 answer
How to pass props to custom header component using ag-grid?
I'm using Vue 3 with ag-grid and want to setup a new ColDef like so
const colDef: ColDef = {
field: 'objectKey',
headerComponent: ColumnHeader, // my custom component
headerComponentParams: {
foo: 'bar'
},
}
My ColumnHeader component…
user19025657
4
votes
2 answers
How to merge cells in a single column?
Given the sample code using ag-grid with Vue 3