Posted 10 August 2025, 12:32 am EST
Hello.
I have updated to C1.WPF.Grid.Ja 9.0.20251.1094.
On FlexGrid, CellEditingTemplate does not works.
How can I solve?
No Editable
C1.WPF.Grid.Ja
- 9.0.20251.1094
- 8.0.20242.986
OK
- 8.0.20241.922
Forums Home / ComponentOne / WPF Edition
Posted by: info on 10 August 2025, 12:32 am EST
Posted 10 August 2025, 12:32 am EST
Hello.
I have updated to C1.WPF.Grid.Ja 9.0.20251.1094.
On FlexGrid, CellEditingTemplate does not works.
How can I solve?
No Editable
C1.WPF.Grid.Ja
OK
Posted 11 August 2025, 6:30 am EST
Hi,
Thank you for sharing the sample project. The cells in the first column of your grid are non-editable because that column does not have a binding defined. Even if you are using a custom CellTemplate and CellEditingTemplate with a binding specified, the column still requires the name of the bound field in order to initiate cell editing.
Therefore, to fix the behavior, you can update the GridColumn definition in the XAML file like:
<c1:GridColumn Width="200" Header="Title" SortMemberPath="Title" Binding="Title">
...
</c1:GridColumn>
We have also attached the updated sample project for reference - FlexGridEditSutdy_Updated.zip
Best Regards,
Kartik
Posted 12 August 2025, 1:30 am EST
Thank you.