This question is locked. New answers and comments are not allowed.
Hi,
Here is my problem, I have a radgridview with two columns (x and y for example).
For x :
and for y :
everything works well, but when I'm exporting the radgridview into xls, for y column I only have the values of what is displaying on the screen. In other words, my radgridview has a scrollbar because there are a lot of elements, but only the rows i can see on the screen are taken into account for exporting whereas I want all to be exported.
Sorry for my English and thanks in advance,
Val
Here is my problem, I have a radgridview with two columns (x and y for example).
For x :
<
telerikGridView:GridViewDataColumn
Header
=
"aHeader"
DataMemberBinding
=
"{Binding NAME}"
Width
=
"Auto"
IsReadOnly
=
"True"
/>
<
telerikGridView:GridViewComboBoxColumn
UniqueName
=
"Uniquename"
Header
=
"anotherHeader"
Width
=
"*"
ItemsSourceBinding
=
"{Binding ListConfigurationsOrderByIndexWithNullConf}"
DisplayMemberPath
=
"NAME"
DataMemberBinding
=
"{Binding SelectedConfiguration}"
>
<
telerikGridView:GridViewComboBoxColumn.CellTemplate
>
<
DataTemplate
>
<
TextBlock
Text
=
"{Binding SelectedConfiguration.NAME}"
/>
</
DataTemplate
>
</
telerikGridView:GridViewComboBoxColumn.CellTemplate
>
</
telerikGridView:GridViewComboBoxColumn
>
everything works well, but when I'm exporting the radgridview into xls, for y column I only have the values of what is displaying on the screen. In other words, my radgridview has a scrollbar because there are a lot of elements, but only the rows i can see on the screen are taken into account for exporting whereas I want all to be exported.
Sorry for my English and thanks in advance,
Val