Common Integration Questions
AG Grid
How to add Velt attributes to AG Grid cells?
Some Velt features like live selection require adding Velt specific attributes to the cell elements. Here’s how you can do it:
- In your AG Grid column definitions, use the
cell renderer
property to customize the cell rendering. - Within the
cell renderer
, add the necessary Velt attributes to the cell element.
Here’s a code sample that shows how to add the data-velt-live-selection-enabled
attribute and other required attributes to AG Grid cell div tags:
Was this page helpful?