I have a rotator with a ticker in the item template bound to an XLMDataSource on my page set up like:
When I go to my page everything appears to work fine and I see the rotator doing its thing and the ticker is ticking. But when I click an item on the page that causes a postback, the rotator shows the associated image but the ticker no noger runs. Any ideas?
| <telerik:RadRotator ID="RadRotator1" runat="server" |
| DataSourceID="XmlDataSource1" Width="100%" FrameDuration="6000" |
| ScrollDirection="Left" ScrollDuration="800" Height="250px" |
| PauseOnMouseOver="False" ItemWidth="200px"> |
| <ItemTemplate> |
| <div class="tickdetail"> |
| <div class="clogo"><img src="<%# XPath("LogoFile") %>" alt=""/></div> |
| <div class="tickdesc" style="text-align:center"> |
| <telerik:RadTicker ID="Ticker1" runat="server" TickSpeed="50"> |
| <Items> |
| <telerik:RadTickerItem Text='<%# XPath("Description") %>' /> |
| </Items> |
| </telerik:RadTicker> |
| </div> |
| </div> |
| </ItemTemplate> |
| <SlideShowAnimation Duration="1000" Type="Fade" /> |
| </telerik:RadRotator> |
When I go to my page everything appears to work fine and I see the rotator doing its thing and the ticker is ticking. But when I click an item on the page that causes a postback, the rotator shows the associated image but the ticker no noger runs. Any ideas?
