Hi,
As a newbie to the RAD controls having just recently purchased them i am having issues displaying a RAD Rotator XML Feed inside an AJAX tab container. The first tab contains the XML feed in the rotator, the second tab has a rad textbox (which i can see no probs), I just cannot view the XML feed on the page, yet if i view source the content is definitely there from the XML feed.....is there any issue that i dont know about using the RAD Rotator XML Feed with AJAX tab container? The rad rotator work without the tab containers being on the same page.
As a newbie to the RAD controls having just recently purchased them i am having issues displaying a RAD Rotator XML Feed inside an AJAX tab container. The first tab contains the XML feed in the rotator, the second tab has a rad textbox (which i can see no probs), I just cannot view the XML feed on the page, yet if i view source the content is definitely there from the XML feed.....is there any issue that i dont know about using the RAD Rotator XML Feed with AJAX tab container? The rad rotator work without the tab containers being on the same page.
| <div id="page_content_home"> |
| |
| <cc1:TabContainer ID="tcHomePage" runat="server" CssClass="sales_tabs_home" ActiveTabIndex="0"> |
| <cc1:TabPanel ID="tpNews" runat="server"> |
| <contenttemplate><br /> |
| <telerik:RadRotator ID="RadRotator1" runat="server" DataSourceID="xmlDataSource1" ScrollDirection="Up" ScrollDuration="2000" Width="450px" Height="330px" |
| FrameDuration="1" InitialItemIndex="-1"> |
| <ItemTemplate> |
| <div class="newsFeed"> |
| <a href='<%# XPath("link") %>'> |
| <%# System.Web.HttpUtility.HtmlEncode(XPath("title").ToString())%> |
| </a> |
| <br /><%# XPath("description") %><br /> |
| <%# XPath("pubDate") %> |
| </div> |
| </ItemTemplate> |
| </telerik:RadRotator> |
| </contenttemplate> |
| <headertemplate>News</headertemplate> |
| </cc1:TabPanel> |
| <cc1:TabPanel ID="tpMatchInfo" runat="server"> |
| <contenttemplate> <br /> |
| <telerik:RadTextBox ID="RadTextBox1" runat="server" Text="radtextbox" Width="125px"> |
| </telerik:RadTextBox><br /> |
| This will be the latest match information |
| </contenttemplate> |
| <headertemplate>Match Info</headertemplate> |
| </cc1:TabPanel> |
| <cc1:TabPanel ID="tpLatestPredictions" runat="server" > |
| <contenttemplate> <br /><br /> |
| This the latest match prediction from users |
| </contenttemplate> |
| <headertemplate>Latest Predictions</headertemplate> |
| </cc1:TabPanel> |
| <cc1:TabPanel ID="tpComments" runat="server" > |
| <contenttemplate><br /><br /> |
| This is the latest comments from users |
| </contenttemplate> |
| <headertemplate>Supporter Comments</headertemplate> |
| </cc1:TabPanel> |
| </cc1:TabContainer> |
| <asp:XmlDataSource ID="xmlDataSource1" XPath="rss/channel/item" runat="server" DataFile="http://www.finning.co.uk/rss/"> |
| </asp:XmlDataSource> |
| </div> |
