I have a DataGrid where the contents of one of the columns is html links. Onscreen, I can click the links in the grid and they work no problem.
When I create a PrintDataGrid with the same data provider, the printed output treats the HTML as text so I can see the markup, e.g. instead of printing 'click here' it prints '<a href="http://somesite/">click here</a>'. How can I make the PrintDataGrid display the link text instead of the underlying HTML?

