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
@@ -116,17 +116,22 @@ To enable Virtualized Columns:
116
116

117
117
118
118
119
-
## Limitations
120
-
121
-
* Virtualized and [Frozen]({%slug grid-columns-frozen%}) are not supported to work together. The idea behind freezing some columns is so that they are visible at all time disregarding their position in the Grid. The Virtualized Columns, on the other hand, render only the columns for the current Grid viewport.
122
119
123
120
## Notes
124
121
125
-
* The `RowHeight` must accommodate the height of all the possible cells and their content in order to ensure good appearance. If certain cells that are not rendered have content that is taller than the rendered ones, you may experience glitches and unstable scrolling.
122
+
* The `RowHeight` must accommodate the height of all the possible cells and their content in order to ensure good appearance. If certain cells that are not rendered have content that is taller than the rendered ones, you may experience glitches and unstable scrolling.
126
123
* If the row/cell height the browser would render is larger than the `RowHeight` value due to the cell contents, the browser will ignore the `RowHeight`. The actual cell height can depend on the chosen Theme or other CSS rules, or on cell data that falls on more than one line. Inspect the rendered HTML to make sure the grid setting matches the rendering.
127
-
* The `Height` of the Grid must be explicitly set in `px`. By default the Height is set by the browser depending on the contents. When a new column is rendered during horizontal scrolling, it might increase or decrease the vertical size of the row and cause issues with the rendering and abnormal visual behavior for the users.
128
-
* Rendering the Virtual Columns in Client-side Blazor Applications is slower due to the Framework rendering limitations. In the Server-side Applications this issue is not present.
124
+
* The `Height` of the Grid must be explicitly set in `px`. By default the Height is set by the browser depending on the contents. When a new column is rendered during horizontal scrolling, it might increase or decrease the vertical size of the row and cause issues with the rendering and abnormal visual behavior for the users.
125
+
* Rendering the Virtual Columns in Client-side Blazor Applications is slower due to the Framework rendering limitations. In the Server-side Applications this issue is not present.
126
+
127
+
128
+
## Limitations
129
+
130
+
The Virtualized Columns are a feature for improving the responsiveness and performance of the Grid in cases when the data model has a lot of properties and the volume of columns is large.
131
+
132
+
List of known limitations of the Virtualized columns:
129
133
134
+
*[Frozen]({%slug grid-columns-frozen%}) columns are not supported.
0 commit comments