[Mono-bugs] [Bug 434555] New: ASP.NET TableRow control won't render thead/ tbody when TableSection is set (breaking jquery/tablesorter)

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Sat Oct 11 08:51:36 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=434555


           Summary: ASP.NET TableRow control won't render thead/tbody when
                    TableSection is set (breaking jquery/tablesorter)
           Product: Mono: Class Libraries
           Version: unspecified
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: Sys.Web
        AssignedTo: mhabersack at novell.com
        ReportedBy: johannes at jroith.de
         QAContact: mono-bugs at lists.ximian.com
          Found By: ---


ASP.NET should render a thead (and tbody element) inside a table, when
TableSection is used on a TableRow or on a TableRowHeader.

For example:

<asp:tablerunat="server">
        <asp:tableheaderrow TableSection="TableHeader">
                <asp:tableheadercell>header1</asp:tableheadercell>
                <asp:tableheadercell>header2</asp:tableheadercell>
        </asp:tableheaderrow>
        <asp:tablerow TableSection="TableBody">
                <asp:tablecell>body1/asp:tablecell>
                <asp:tablecell>body2/asp:tablecell>
        </asp:tablerow>
</asp:table>

Should result in something like:

<table>
<thead>
<tr><th>header1</th><th>header2</th></tr>
</thead>
<tbody>
<tr><td>body1</td><td>body2</td></tr>
</tbody>
</table>

But will look more like:


<table>
<tr><th>header1</th><th>header2</th></tr>
<tr><td>body1</td><td>body2</td></tr>
</table>

This breaks the tablesorter.com jquery plugin. It also must be fixed, because
of accessibility considerations.


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the mono-bugs mailing list