This question is locked. New answers and comments are not allowed.
Hi,
in my gridview I have defined a custom checkbox column:
If I copy a cell and then paste it to excel, instead to get the value of "IsVisible" property I get the name of the object's class.
How can I solve this problem?
Thank you very much.
in my gridview I have defined a custom checkbox column:
<telerik:GridViewDataColumn Header="Visualizza" IsReadOnly="True" IsSortable="True" SortMemberPath="IsVisible"> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <CheckBox IsChecked="{Binding IsVisible, Mode=TwoWay}" IsEnabled="{Binding IsModifiable, Mode=TwoWay}" Click="CheckBox_Click"></CheckBox> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn>If I copy a cell and then paste it to excel, instead to get the value of "IsVisible" property I get the name of the object's class.
How can I solve this problem?
Thank you very much.