In RadGridView, if the AutoGenerateColumns is true the PrintToHtml() function print all the columns perfectly.
Suppose, if I want to use the below template for a column then it is not printed when using the PrintToHtml() function. But the GridViewDataColumn is alone printed.
<telerikGridView:GridViewColumn Header="Journey">
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate>
<Grid>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding StartLocation}"/>
<TextBlock Text=" - "/>
<TextBlock Text="{Binding EndLocation}"/>
</StackPanel>
</Grid>
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
Please, help me to solve this issue..
Thanks in Advance...
Suppose, if I want to use the below template for a column then it is not printed when using the PrintToHtml() function. But the GridViewDataColumn is alone printed.
<telerikGridView:GridViewColumn Header="Journey">
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate>
<Grid>
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding StartLocation}"/>
<TextBlock Text=" - "/>
<TextBlock Text="{Binding EndLocation}"/>
</StackPanel>
</Grid>
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
Please, help me to solve this issue..
Thanks in Advance...