I have an app in which I use a tabcontainer control of the microsoft ajax control tool kit. And I just realized, after mush time spent trying to make it work, that it does not work at all inside a tab of the tabcontainer control.
Anybody knows any work around?
<
cc1:TabContainer ID="TabContainer1" runat="server" ActiveTabIndex="0">
<cc1:TabPanel ID="TabPanel1" runat="server" HeaderText="Photos Grouped in Frames">
<HeaderTemplate>
Grouped in Frames
</HeaderTemplate>
<ContentTemplate>
<telerik:RadRotator ID="RadRotator1" runat="server" DataSourceID="ObjectDataSource2">
<ItemTemplate>
<asp:Image ID="Image1" ImageUrl='<%#"~/" + eval("imageurl") %>' runat="server" />
</ItemTemplate>
</telerik:RadRotator>
<asp:ObjectDataSource ID="ObjectDataSource2" runat="server" SelectMethod="GetFramePhotos" TypeName="MB.TheBeerHouse.BLL.Albums.Photo">
<SelectParameters>
<asp:ControlParameter ControlID="FrameIODTag" DefaultValue="" Name="FrameID" PropertyName="Value" Type="Int32" />
</SelectParameters>
</asp:ObjectDataSource>
</
ContentTemplate>
</cc1:TabPanel>
<cc1:TabPanel ID="TabPanel2" runat="server" HeaderText="Loose Photos">
</cc1:TabPanel>
<cc1:TabPanel ID="TabPanel3" runat="server" HeaderText="Loose Photos">
<ContentTemplate>
</ContentTemplate>
</cc1:TabPanel>
</cc1:TabContainer>
this does not work. It will occupy the spacce on screen but will not display any picture or data at all.