OK, I thought this would be easy but I am running into a problem with the reports module. SQL is returning data fine, have HTML Template Virtualizer selected and my html template file is simple as can be
<table>
<tr>
<td>
<img src="[CoverImage]" />
</td>
<td>
<div class="Bio">
[PublicationDate]</div>
<div class="ArticlePageTitle">
[IssueName]</div>
[Description]
</td>
</tr>
</table>
But when it render the html is converted into
<table> <tr> <td> <img src="Cover_Images/Desert.jpg" /> </td> <td>
<div class="Bio"> 3/1/2010 12:00:00 AM</div> <div class="ArticlePageTitle"> Making Cents!</div> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean at egestas sapien. Suspendisse sed arcu sodales est tristique ullamcorper et sed tellus. Nam tempor ipsum a nunc congue quis pulvinar dui bibendum. Proin varius, lorem eget fermentum suscipit, turpis dui interdum turpis, ut porta turpis risus nec urna. Vivamus adipiscing iaculis enim eget cursus. Aenean vestibulum venenatis dui, vitae.</p>
</td> </tr> </table>
Now comes the interesting part...when I remove the fields I use in the template from the sql, so that the tokens are empty it provides proper HTML
<table> <tbody><tr> <td>
<img src="[CoverImage]"> </td> <td> <div class="Bio"> [PublicationDate]</div> <div class="ArticlePageTitle"> [IssueName]</div>
[Description] </td> </tr> </tbody></table>
Any Thoughts?