Hi,
I have a requirement wherein I have two subtabs 'A' and 'B'. Both the subtabs have html with primarily two sections.
As shown in the above code, I need table1 to be automatically present across both subtabs. Clicking on the subtabs should only change the lower half section(in this case from showing table2 to table3 and vice-versa).
Thanks In advance.
I have a requirement wherein I have two subtabs 'A' and 'B'. Both the subtabs have html with primarily two sections.
<RadPageView ID='pg1' runat='server'> <table id='table1'> <tr> <td> Represents the common section. </td> </tr> </table> <table id='table2'> <tr> <td> The differening section of first subtab. </td> </tr> </table> </RadPageView> <RadPageView ID='pg2' runat='server'> <table id='table1'> <tr> <td> Represents the common section. </td> </tr> </table> <table id='table3'> <tr> <td> The differening section of second subtab. </td> </tr> </table> </RadPageView> Thanks In advance.