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
Remove all enable_range_selection references from AG Grid cell selection docs
- Remove invalid enable_range_selection prop from all examples
- Update documentation to reflect that range selection is automatic with cell_selection=True
- Address GitHub comment feedback from Lendemor on PR #1543
- Ensure all examples use only valid AG Grid props
Co-Authored-By: [email protected] <[email protected]>
Copy file name to clipboardExpand all lines: docs/enterprise/ag_grid/cell-selection.md
+4-8Lines changed: 4 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ def basic_cell_selection():
63
63
64
64
## Range Selection
65
65
66
-
For more advanced cell selection features like fill handle, you need to enable range selection by setting `enable_range_selection=True`. This allows users to select multiple cells at once and perform operations across ranges.
66
+
Range selection is automatically enabled when you set `cell_selection=True`. This allows users to select multiple cells at once and perform operations across ranges.
**Note:**While `enable_range_selection=True` enhances fill handle functionality by allowing range selection, it is not required for basic fill handle operations.
136
+
**Note:**Range selection is automatically enabled with `cell_selection=True` and works seamlessly with fill handle operations.
-**Cell Selection**: Enable with `cell_selection=True` for basic cell selection
276
-
-**Range Selection**: Use `enable_range_selection=True` for multi-cell selection
272
+
-**Cell Selection**: Enable with `cell_selection=True` for basic cell selection and automatic range selection
277
273
-**Fill Handle**: Configure with `cell_selection={"handle": {"mode": "fill"}}` for drag-to-fill functionality
278
274
-**Event Handling**: Use `on_cell_selection_changed` to respond to selection changes
279
275
-**Value Changes**: Use `on_cell_value_changed` to handle individual cell edits and fill operations
280
276
-**Text Selection**: Enable `enable_cell_text_selection=True` to allow text selection within cells
281
277
282
278
## Best Practices
283
279
284
-
1.**Consider range selection for enhanced functionality**: While `enable_range_selection=True` is not required for fill handle, it provides additional selection capabilities that complement fill operations.
280
+
1.**Use cell_selection configuration**: Range selection is automatically enabled with `cell_selection=True` and provides all necessary selection capabilities for fill operations.
285
281
286
282
2.**Handle cell value changes**: When using fill handle, implement `on_cell_value_changed` to process the data updates in your backend.
0 commit comments