A normal asp:Panel with GroupingText set should render as a fieldset with GroupingText's value as its legend. This code below works.
But the same code using the RadAjaxPanel does not.
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <asp:ScriptManager runat="server" ID="rsm"></asp:ScriptManager> <asp:Panel ID="pnlMailingAddr" runat="server" meta:resourcekey="pnlMailingAddrResource1" Visible="True" ViewStateMode="Enabled" GroupingText="Mailing Address Information"> <table border="0px" cellpadding="5px" cellspacing="5px" width="100%"> <tr> <td>John Legend </td> </tr> </table> </asp:Panel> </div> </form></body></html>But the same code using the RadAjaxPanel does not.
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body> <form id="form1" runat="server"> <div> <asp:ScriptManager runat="server" ID="rsm"></asp:ScriptManager> <asp:RadAjaxPanel ID="pnlMailingAddr" runat="server" meta:resourcekey="pnlMailingAddrResource1" Visible="True" ViewStateMode="Enabled" GroupingText="Mailing Address Information"> <table border="0px" cellpadding="5px" cellspacing="5px" width="100%"> <tr> <td>John Legend </td> </tr> </table> </asp:RadAjaxPanel> </div> </form></body></html>