Hi,
Is there a way to export only the specified columns to excel. If not ;
As you see at the code above i am using e cell template at the grid column. While exporting it does not export the data inside the cell template. Is the a way to solve this.
Regards.
Is there a way to export only the specified columns to excel. If not ;
| <telerik:GridViewDataColumn IsFilterable="False" IsGroupable="False" IsReadOnly="True" IsSortable="False" Header="Adet" Width="125"> |
| <telerik:GridViewDataColumn.CellTemplate> |
| <DataTemplate> |
| <StackPanel Orientation="Horizontal"> |
| <TextBlock Text="{Binding ItemAmount}" FontWeight="Bold"/> |
| <TextBlock Text=" yerine "/> |
| <TextBlock Text="{Binding ArrivedAmount}" FontWeight="Bold"/> |
| </StackPanel> |
| </DataTemplate> |
| </telerik:GridViewDataColumn.CellTemplate> |
| </telerik:GridViewDataColumn> |
As you see at the code above i am using e cell template at the grid column. While exporting it does not export the data inside the cell template. Is the a way to solve this.
Regards.
