I have created a custom RadGrid class and added export buttons inside the CommandItemTemplate. When I export to Excel/PDF the hyperlinks (value) do not show up. I know setting ExportDataOnly="false" takes care this but my web pages crash when I set it to false. Is there a solution to this? Thanks,
I guess you are trying to export GridHyperLinkColumn data.The GridHyperlinkColumn in Telerik RadGrid have Hyperlink in their cells. They are
not considered as data, so while you export those hyperlinks will be stripped from the resulting
Excel file. You may refer the following help article which explains how to export Hyperlink column data. Exporting tips and tricks
That makes since but I need to be able to do a onClick event b/c it needs to open a popup window when the user clicks on it. How can I make that happen.