diff --git a/wpf-toc.html b/wpf-toc.html index 4f2043247..fcd261b0f 100644 --- a/wpf-toc.html +++ b/wpf-toc.html @@ -2450,7 +2450,7 @@ Word Library (DocIO)
ViewPortHeight
when the {{'[RowTemplate](
+## Handling Row Virtualization in RowTemplate
+By default, rows in the `DataGrid` are virtualized and reused to enhance performance. However, when using a RowTemplate that includes interactive controls (such as SfDataGrid, DataGrid, or similar components), this reuse can lead to unexpected behavior during data operations like sorting or filtering. Specifically, the visual state and data bindings of these controls may not persist correctly.
+
+This occurs because the same row visual elements are recycled and displayed for different data items during virtualization.
+
+To provide greater flexibility, the `TemplateRenderMode` property is available for row templates. This property allows you to configure how the row templates are instantiated and managed within the DataGrid.
+
+## TemplateRenderMode:
+
+### Shared (Default):
+* Rows (and their templates) are reused across multiple rows as you scroll or interact with the grid.
+* This mode provides the best performance and lowest memory usage.
+* Since templates are shared, visual state and control data may not persist correctly during operations like expanding, collapsing, or scrolling. This can lead to visual inconsistencies or data mismatches.
+
+### Individual:
+* A unique rows and template instance is created for each data row.
+* Template instances are not shared or reused across rows.
+* Data operations and visual state are always preserved correctly for each row, even after expanding, collapsing, or scrolling.
+
+N> Use `Shared` for maximum performance and when your row template only contains simple data-bound controls with no per-row persistent state.
+
+Use `Individual` when your row template is contains interactive controls that need to preserve their state for each data row independently.
+
+
## Keyboard navigation support for DetailsViewTemplate
In the SfDataGrid, you can navigate from parent row to DetailsViewTemplate and vice-versa using Tab key by default. You can also restrict tab key navigation from parent to DetailsViewTemplate by setting the [TemplateViewDefinition.TemplateNavigationMode](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Grid.TemplateViewDefinition.html#Syncfusion_UI_Xaml_Grid_TemplateViewDefinition_NavigationMode) property value to `ExcludeTemplateRow`.
diff --git a/wpf/Release-notes/v30.1.42.md b/wpf/Release-notes/v30.1.42.md
index 1a74acc8e..dd9b99cda 100644
--- a/wpf/Release-notes/v30.1.42.md
+++ b/wpf/Release-notes/v30.1.42.md
@@ -7,10 +7,54 @@ documentation: ug
# Essential Studio for WPF Release Notes
-{% include release-info.html date="July 29, 2025" version="v30.1.42" %}
+{% include release-info.html date="July 29, 2025" version="v30.1.42" passed="177070" failed="0" %}
{% directory path: _includes/release-notes/v30.1.42 %}
{% include {{file.url}} %}
-{% enddirectory %}
\ No newline at end of file
+{% enddirectory %}
+
+## Test Results
+
+| Component Name | Test Cases | Passed | Failed | Remarks |
+|---------------|------------|--------|--------|---------|
+| CheckListBox | 150 | 150 | 0 | All Passed |
+| ChromelessWindow | 152 | 152 | 0 | All Passed |
+| ColorPicker | 114 | 114 | 0 | All Passed |
+| ColorPickerPalette | 104 | 104 | 0 | All Passed |
+| ComboBoxAdv | 118 | 118 | 0 | All Passed |
+| DateTimeEdit | 169 | 169 | 0 | All Passed |
+| DockingManager | 1085 | 1085 | 0 | All Passed |
+| DoubleTextBox | 345 | 345 | 0 | All Passed |
+| EditControl | 193 | 193 | 0 | All Passed |
+| FastLineChart | 191 | 191 | 0 | All Passed |
+| GanttControl | 2059 | 2059 | 0 | All Passed |
+| GridDataControl | 519 | 519 | 0 | All Passed |
+| PdfViewer | 2998 | 2998 | 0 | All Passed |
+| PivotGrid | 104 | 104 | 0 | All Passed |
+| PropertyGrid | 142 | 142 | 0 | All Passed |
+| Ribbon | 1853 | 1853 | 0 | All Passed |
+| SfBulletGraph | 147 | 147 | 0 | All Passed |
+| SfChart | 1309 | 1309 | 0 | All Passed |
+| SfCirculargauge | 305 | 305 | 0 | All Passed |
+| SfDataGrid | 4482 | 4482 | 0 | All Passed |
+| SfDatePicker | 118 | 118 | 0 | All Passed |
+| SfImageEditor | 177 | 177 | 0 | All Passed |
+| SfMaskedEdit | 104 | 104 | 0 | All Passed |
+| SfMultiColumnDropDownControl | 188 | 188 | 0 | All Passed |
+| SfScheduler | 2598 | 2598 | 0 | All Passed |
+| SfSpreadsheet | 2698 | 2698 | 0 | All Passed |
+| SfTextInputLayout | 333 | 333 | 0 | All Passed |
+| SfTimePicker | 125 | 125 | 0 | All Passed |
+| SfTreeGrid | 2157 | 2157 | 0 | All Passed |
+| SfTreeMap | 742 | 742 | 0 | All Passed |
+| SfTreeView | 1211 | 1211 | 0 | All Passed |
+| TabControlExt | 130 | 130 | 0 | All Passed |
+| TileViewControl | 131 | 131 | 0 | All Passed |
+| TreeViewAdv | 284 | 284 | 0 | All Passed |
+| UpDown | 295 | 295 | 0 | All Passed |
+| DocIO | 39817 | 39817 | 0 | All Passed |
+| PDF | 14345 | 14345 | 0 | All Passed |
+| Presentation | 50976 | 50976 | 0 | All Passed |
+| XlsIO | 44102 | 44102 | 0 | All Passed |
\ No newline at end of file