This question is locked. New answers and comments are not allowed.
Hello Telerik Staff,
I wonder if this is a bug or there is a proper way to doing it?
I have the following as my Column header:
If I export this TreeListView, the column name will become TextBlock.ToString() value...
What will be the proper way of doing it?
Thanks
I wonder if this is a bug or there is a proper way to doing it?
I have the following as my Column header:
<telerik:GridViewDataColumn UniqueName="FirstName"> <telerik:GridViewDataColumn.Header> <TextBlock Text="My Header"/> </telerik:GridViewDataColumn.Header> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <Grid Height="100"> <Rectangle Stroke="AliceBlue" StrokeThickness="1" Fill="Transparent"/> <TextBlock Text="{Binding FirstName}"/> </Grid> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn>If I export this TreeListView, the column name will become TextBlock.ToString() value...
What will be the proper way of doing it?
Thanks