Hello,
I'm exporting a Radgrid to a PDF but the result looks like the attached document.
I can't seem to figure out what's causing the strange output.
New rows(<TR>) aren't starting in a new row. instead everything appears os one long string.
part of my grid code looks like this:
I'm exporting a Radgrid to a PDF but the result looks like the attached document.
I can't seem to figure out what's causing the strange output.
New rows(<TR>) aren't starting in a new row. instead everything appears os one long string.
part of my grid code looks like this:
<telerik:RadGrid runat="server" ID="rgMediaInfo" Skin="Default" GridLines="None" |
AllowSorting="true" ShowHeader="false" OnItemDataBound="rgMediaInfo_ItemDataBound"> |
<ExportSettings Pdf-PageTitle="Masters Details" ></ExportSettings> |
<MasterTableView> |
<ItemTemplate> |
<table width="320px"> |
<colgroup > |
<col /> |
<col /> |
</colgroup> |
<tr> |
<td> |
<asp:Label ID="lblMediaTypeLabel" runat="server" Text="Media Type"></asp:Label> |
</td> |
<td> |
<asp:Label ID="lblMediaType" runat="server" Text='<%#Eval("MediaType")%>' ></asp:Label> |
</td> |
</tr> |
<tr> |
<td> |
<asp:Label ID="lblMediaAssetTypeLabel" runat="server" Text="Media Asset Type"></asp:Label> |
</td> |
<td> |
<asp:Label ID="lblMediaAssetType" runat="server" Text='<%# Eval("MediaAssetType") %>'></asp:Label> |
</td> |
</tr> |
* |
* |
* |
* |