Hi - I'm creating my first GridView, and have a question. I have a column defined as a DynamicHyperlink, and it's working well as far as the link going where I want it to. However, when I try to export the file, I'm getting this value in the field, it should be a name:
"WEDSSGVStuPerf.ServiceReference1.StudentPrefBev"
I have the field defined as below:
NavigateUrlMemberPaths="FirstName,LastName" TargetName ="_self" >
What do I need to do to get this to export correctly?
Thank you
Lisa
"WEDSSGVStuPerf.ServiceReference1.StudentPrefBev"
I have the field defined as below:
<telerik:GridViewDynamicHyperlinkColumn SortMemberPath="LastName" Header="Student Name" NavigateUrlFormatString="http://localhost:63277/StudentProfileMUTestPage.aspx"
<telerik:GridViewDynamicHyperlinkColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding spbStudentName}" TextWrapping="Wrap" />
</DataTemplate>
</telerik:GridViewDynamicHyperlinkColumn.CellTemplate>
</telerik:GridViewDynamicHyperlinkColumn>
What do I need to do to get this to export correctly?
Thank you
Lisa