Skip to content
This repository was archived by the owner on Jun 1, 2025. It is now read-only.

Commit 7cbdaa4

Browse files
committed
docs: add note about Row Detail with dynamic elements
1 parent 9035ad2 commit 7cbdaa4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/grid-functionalities/row-detail.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,16 @@
1212
[Demo Page](https://ghiscoding.github.io/Angular-Slickgrid/#/rowdetail) / [Demo Component](https://github.com/ghiscoding/Angular-Slickgrid/blob/master/src/app/examples/grid-rowdetail.component.ts)
1313

1414
### Description
15-
A Row Detail allows you to open a detail panel which can contain extra and/or more detailed information about a row. For example, we have a user list but we want to display detailed information about this user (his full address, account info, last purchasers, ...) but we don't want to display this in the user grid (for performance and real estate reasons), so a Row Detail is perfect for this.
15+
A Row Detail allows you to open a detail panel which can contain extra and/or more detailed information about a row. For example, we have a user list but we want to display detailed information about this user (his full address, account info, last purchasers, ...) but these are extra details that we don't want to display this in the user grid (for performance and real estate reasons)... so a Row Detail is perfect for that use case.
1616

1717
> **NOTE** Please note that because of the complexity behind Row Detail, the following features cannot be mixed with Row Detail because they will cause UI problems
1818
> - Grouping
1919
> - Pagination
2020
> - Tree Data
2121
> - RowSpan
2222
23+
> **NOTE 2** Also please note that whenever you scroll back and forth, the Row Detail will be rendered and re-rendered multiple times when you scroll or open/collapse other Row Details. For that reason, you should avoid adding too many dynamic elements (like form with inputs) because whenever a re-render kicks in, it will most often reset these elements. So it is totally fine to use it to show extra details (hence where its name comes from "Row Detail" to show more detailed info) and even though it works with dynamic elements, you have to know its limitation.
24+
2325
## Usage
2426

2527
##### View

0 commit comments

Comments
 (0)