Hi,
I have an empty row showing in my dashboard which I'm very keen to be rid of:
<table id="dnn_ctr851_RepositoryDashboard_DashTable" class="normal" cellspacing="0" cellpadding="0" border="0" style="border-width: 0px; width: 100%; border-collapse: collapse;">
<tbody>
<tr valign="top" style="width: 100%;">
<td align="left" valign="top" style="width: 100%;">
<table id="dnn_ctr851_RepositoryDashboard_lstObjects" cellspacing="0" border="0" rules="all" style="border-width: 0px; width: 100%; border-collapse: separate;">
<tbody>
<tr class="normal">
<td> </td>
</tr>
<tr class="normal">
<td>
<a id="dnn_ctr851_RepositoryDashboard_lstObjects_ctl02_hypDownload" class="normal" href=" __doPostBack('dnn...
It is not in the portfolio files anywhere nor in the html module i have above it. I suspect it is in the repository.ascx file outside of the template folders. eg.
<asp:DataGrid ID="lstObjects" runat="server" AllowSorting="True" Width="100%" AllowPaging="True"
OnItemCommand="lstObjects_ItemCommand" BorderWidth="0" BorderStyle="None" OnPageIndexChanged="lstObjects_PageIndexChanged"
ItemStyle-CssClass="normal" AlternatingItemStyle-CssClass="normal" AutoGenerateColumns="False"
PageSize="5" PagerStyle-Visible="False" Visible="True" Enablev13wstat3="True"
Style="border-collapse: separate;" ShowHeader="False">
<HeaderStyle CssClass="normal" />
<FooterStyle CssClass="normal" />
<Columns>
<asp:TemplateColumn>
<ItemTemplate>
<asp:Label ID="TheFileName" runat="server" Visible="False">
<%# DataBinder.Eval(Container.DataItem,"FileName")%>
</asp:Label>
<asp:PlaceHolder ID="PlaceHolder" runat="server" Visible="False" />
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp:DataGrid>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
<asp:Table ID="FooterTable" Width="100%" runat="server" CssClass="normal" CellSpacing="0" CellPadding="0">
<asp:TableRow>
<asp:TableCell>
<asp:PlaceHolder ID="fPlaceHolder" runat="server" />
</asp:TableCell>
This dashboard adds a tagline directly beneath a page heading in an HTML module, so I have stripped all tables out of the rep html templates so that the repository file is only FILEUPLOAD and the dashboard is only FILENAME. Works perfectly except the dashboard tagline has one empty row above it which I need to find to get rid of so it is flush beneath the page heading...