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: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]
         QAContact: [email protected]
          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.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to