I have a tool tip that displays grid after a click. It works fine except if the back button on the browser is clicked. After the back button is clicked the grid is displayed but the tool tip does not have boards and has different style. If the page is refreshed the problem disappears. Any suggestions are appreciated ;-)
Thank you.
<%
@ Page Language="VB" AutoEventWireup="false" CodeFile="Test.aspx.vb" Inherits="Test" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title>Radrotator Test Page</title>
</
head>
<
body>
<form id="form1" runat="server">
<asp:ScriptManager ID="smMaster" runat="server">
</asp:ScriptManager>
<telerik:RadRotator ID="rrTest" runat="server" Skin="" FrameDuration="10000" Height="267px"
ScrollDuration="1000" Width="737px" EnableEmbeddedSkins="False" ScrollDirection="Left"
ItemHeight="267px" ItemWidth="737px">
<Items>
<telerik:RadRotatorItem>
<ItemTemplate>
<div style="margin: 0 10px 0 10px; background-color: #f3f3f3; width: 406px; height: 267px;
float: left;">
<img src="" width="406" height="267" alt="test" /></div>
<div style="float: right; margin: 0 10px 0 0; background-color: #f3f3f3; width: 291px;
height: 257px; padding: 5px;">
<h2>
Feature Headline
</h2>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh
euismod tincidunt ut laoreet dolore.
<p>
Ut wisi enim ad minim veniam quis nostrud exerci tation ullamcorper suscipit lobortis
nisl ut aliquip ex ea commodo consequat.
</p>
</div>
</ItemTemplate>
</telerik:RadRotatorItem>
<telerik:RadRotatorItem>
<ItemTemplate>
<div style="margin: 0 10px 0 10px; background-color: #f3f3f3; width: 406px; height: 267px;
float: left;">
<img src="" width="406" height="267" alt="test" /></div>
<div style="float: right; margin: 0 10px 0 0; background-color: #f3f3f3; width: 291px;
height: 257px; padding: 5px;">
<h2>
Feature Headline 2
</h2>
Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh
euismod tincidunt ut laoreet dolore.
<p>
Ut wisi enim ad minim veniam quis nostrud exerci tation ullamcorper suscipit lobortis
nisl ut aliquip ex ea commodo consequat.
</p>
</div>
</ItemTemplate>
</telerik:RadRotatorItem>
</Items>
</telerik:RadRotator>
</form>
</
body>
</
html>

