I generate a report using xtraReport. There are some hyperlink in my report that created by setting XRControl.NavigateUrl.

When I export to xls, I can set the XlsExportOptions.ExportHyperlinks = false to disable these hyperlinks.

But when I try to export to pdf format, I could not find a similar thing to disable hyperlink in pdf.

How can I remove these hyperlinks in pdf?

Thanks

link|improve this question

80% accept rate
feedback

1 Answer

I can suggest that you modify the report as it is shown in the How to customize a report control's appearance only when exporting the report example.

link|improve this answer
But my hyperlinks are doing some javascript function. For example: XRTableCell.NavigateUrl = "javascript: dosomething();"; How can I deal with it? – pengruijun Jul 5 '11 at 7:48
Hmm, it seems that you wanted to disable the hyperlink during exporting... Could you please explain how the report should work in this case? – DevExpress Team Jul 5 '11 at 8:58
In my case, the report include a summary table(XRTable) at the bottom. Inside each table cell, it is a number. User can click the number to trigger a javascript function that will popup another dialog to show the detail information about this number. That is how it works in report. But after exporting to pdf, I just want to export to a plain table that have text number inside each cell. I don't want the hyperlink for each cell. Thanks – pengruijun Jul 6 '11 at 0:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.