Hi Joseph,
Thanks for contacting Syncfusion Support,
We have checked your query. The issue edited cell value which is not updated in the SfDataGrid is not reproduced on our side.
|
- Note: Implement “INotifyPropertyChanged” to the model properties to avoid value update issues when property change occurs.
|
The grouped column can be collapsed by setting the property ShowColumnWhenGrouped as false.
Refer the below code more details.
|
<sfgrid:SfDataGrid x:Name="dataGrid" AllowEditing="True"
ItemsSource="{Binding OrdersInfo}"
AutoGenerateColumns="False"
ColumnSizer="Auto" AllowGroupExpandCollapse="True" ShowColumnWhenGrouped="False">
<sfgrid:SfDataGrid.Columns>
<sfgrid:GridTextColumn MappingName="OrderID" HeaderText="Order ID"/>
<sfgrid:GridTextColumn MappingName="CustomerID" HeaderText="Customer ID"/>
<sfgrid:GridTextColumn MappingName="FirstName" HeaderText="First Name"/>
<sfgrid:GridTextColumn MappingName="LastName" HeaderText="Last Name"/>
<sfgrid:GridTextColumn MappingName="ShipCountry" HeaderText="Ship Country"/>
</sfgrid:SfDataGrid.Columns>
<sfgrid:SfDataGrid.GroupColumnDescriptions>
<sfgrid:GroupColumnDescription ColumnName="CustomerID"/>
</sfgrid:SfDataGrid.GroupColumnDescriptions>
</sfgrid:SfDataGrid>
|
If the issue still persists on your side can you please modify the sample to reproduce the issue.
We have prepared a sample based on your requirement and you can download the same from the below link.
Regards,
Shivagurunathan. K