RadToolTip will work, sometimes, on the first page load and only on the first mouseover event inside a RadRotator FrameTemplate using the markup I have. It does "sometimes" work, if only once, so I suspect I am missing a setting. Here is the markup, there is no code behind:
If you could help get this working, I would be very thankful!
| <asp:XmlDataSource ID="XmlDataSource1" XPath="rss/channel/item" CacheDuration="300" runat="server"> |
| </asp:XmlDataSource> |
| <script type="text/javascript"> |
| function ClientShow(){alert('ClientShow');} |
| function OnClientBeforeShow(){alert('OnClientBeforeShow');} |
| function OnClientHide(){alert('ClientHide');} |
| function OnClientBeforeHide(){alert('OnClientBeforeHide');} |
| </script> |
| <radR:RadRotator id="RadRotator1" DataSourceID="XmlDataSource1" runat="server" FrameTimeout="2000" TransitionType="Scroll" FramesToShow="5" |
| height="200px" width="200px"> |
| <FrameTemplate> |
| <a id="title" class="title" runat="server"><%#XPath("title")%><br /></a> |
| <telerik:RadToolTip ID="RadToolTip1" runat="server" Sticky="true" |
| TargetControlID="title" OnClientShow="ClientShow" OnClientHide="OnClientHide" OnClientBeforeShow="OnClientBeforeShow" OnClientBeforeHide="OnClientBeforeHide"> |
| <div id="desc" class="desc" runat="server"> |
| <div class="desc_inner"> |
| <%#XPath("description")%> |
| <div><a href='<%#XPath("link")%>'class="link">Read more...</a></div> |
| <br /> |
| </div> |
| </div> |
| <br /> |
| </telerik:RadToolTip> |
| </FrameTemplate> |
| </radR:RadRotator> |
If you could help get this working, I would be very thankful!