Hi,
I have added a GridTemplateColumn to my DataGrid. Inside the CellTemplate are two Buttons. After serialization and deserialization the Buttons are gone.
I have changed your Serialization sample to demonstrate the Problem - I have added this column:
<syncfusion:GridTemplateColumn HeaderText="Test" MappingName="SupplierID">
<syncfusion:GridTemplateColumn.CellTemplate>
<DataTemplate>
<Button Content="{Binding SupplierID}" />
</DataTemplate>
</syncfusion:GridTemplateColumn.CellTemplate>
</syncfusion:GridTemplateColumn>
After clicking Serialize and then Deserialize the Buttons are gone.
Is there a way to use der GridTemplateColumn with serialization?
Thanks
Kurt