📄️ Row Customization
There are multiple ways to customize the rows in the grid.
📄️ Editing
The grid supports editing of data in the grid. You can enable editing by adding the EditBehavior to the behaviors prop of the GridOptions interface. Below is the list of props that can be used to configure the EditBehavior.
📄️ Variable Row Heights
The grid supports variable row heights. The row height can be set by using the rowHeight prop of the GridOptions interface. The rowHeight defaults to Constants.DEFAULTROWHEIGHT.
📄️ Drag and Drop
The grid supports drag and drop of rows. The drag and drop behavior can be customized by using the enableDrag prop of the ColumnOptions interface.
📄️ Selection Modes
The grid supports 5 different selection modes as defined in the GridSelectionMode enum.
📄️ Locked Rows
The grid supports locking rows at the top of the grid. This is useful when you want to display a summary row at the top of the grid. To lock rows, set the lockedDataProvider prop of the GridOptions interface.