Hello,

I have setup a GroupTabPanel with a few GroupTab items. Inside one of these GroupTabs I would like to AutoLoad a page. What I have done is to insert a Panel with an AutoLoad element which works fine:

<ext:GroupTabPanel ID="GroupTabPanel1" runat="server" TabWidth="130" ActiveGroupIndex="0">
    <Groups>
        <ext:GroupTab ID="gtOPS" runat="server" MainItem="0">
            <Items>
                <ext:Panel runat="server" Header="false" Border="false">
                    <AutoLoad Url="/OPS/Home/Index" Mode="IFrame">
                    </AutoLoad>
                </ext:Panel>
                <ext:Panel runat="server" Title="SSRI Information" Icon="TagBlue">
                    <Content>
                        <p>Sample Content</p>
                    </Content>
                </ext:Panel>
            </Items>
        </ext:GroupTab>
        ...
    </Groups>
</ext:GroupTabPanel>
However, despite setting Header="false" and Border="false" I still get a header and border which ruins the look of the GroupTabPanel. Is there something else I need to be doing or can this not be achieved at the moment?

Thanks,