Hi,
I have a very simple site with a masterpage.
This site is just for demo purposes and some tests.
It has a masterpage - and is AJAX enabled.
Here the main layout
So I have a head with 2 areas.
A navigation line with RadMenu.
A content pane and on the right side a "news pane".
On the bottom is some place for a footer.
I guess a pretty common and normal layout.
Everything works until it comes to the rotator.
Here is the page - also very simple:
You can see this page on REMOVED - SOLVED
I changed the size of the imgPreview to make the things a bit larger.
The result is in REMOVED - SOLVED
With FF 3.0.5 it works as expected - at least when I turn of "PauseOnMouseOver" because this sometimes stops the animation.
It goes than into a state where it does not scroll - but when I enter with the mouse and go out again it scrolls for some frames than it stops again.....
But anyhow - I don't really need PauseOnMouseOver.
But when you whatch the page with IE 7 - it is in simply words "unusable".
The Rotator is not included in scrolling.
If you load the page it is below the containing div.
When you scroll down an click on an image - it is positioned inside the frame.
But scrolling scrolls only the imgPreview not the rotator....
If you scroll up and click again -- it is displayed again below the div.
I don't think this is what you mean when you say:
Wide Cross-browser Support
RadControls for ASP.NET AJAX provides a consistent experience across all the major browsers: Internet Explorer, Firefox, .....
:)
Just kidding - but help would be great!!
Regards
Manfred
I have a very simple site with a masterpage.
This site is just for demo purposes and some tests.
It has a masterpage - and is AJAX enabled.
Here the main layout
| <body style="background-color:#666699"> |
| <center> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="ScriptManager1" runat="server" EnableTheming="True"> |
| </telerik:RadScriptManager> |
| <asp:SiteMapDataSource ID="dsSM" runat="server" ShowStartingNode="false" SiteMapProvider="XmlSiteMapProvider" /> |
| <div style="height: 90px; width: 980px;"> |
| <div style="height: 90px; width: 730px; float: left; background-color: Black;"> |
| <img src="/Images/Banner728x90.jpg" alt="House1 Main Banner" /> |
| </div> |
| <div style="height: 90px; width: 250px; float: left; background: Orange;"> |
| </div> |
| </div> |
| <div style="height: 25px; width: 980px; background: DarkRed;"> |
| <telerik:RadMenu ID="rmMainAno" runat="server" Style="top: 0px; left: 0px; width: 980px" DataSourceID="dsSM"> |
| <CollapseAnimation Type="OutQuint" Duration="200"></CollapseAnimation> |
| </telerik:RadMenu> |
| </div> |
| <div style="height: 600px; width: 980px; background: White; text-align: left"> |
| <div style="height: 588px; width: 718px; float: left; overflow: auto; padding:6px 6px 6px 6px; "> |
| <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server" /> |
| </div> |
| <div style="height: 600px; width: 250px; float: left; background-color: Maroon;"> |
| </div> |
| </div> |
| <div style="height: 30px; width: 980px; text-align: left; background-color: Silver; padding-top: 3px;"> |
| My Footer</div> |
| </form> |
| </center> |
| </body> |
A navigation line with RadMenu.
A content pane and on the right side a "news pane".
On the bottom is some place for a footer.
I guess a pretty common and normal layout.
Everything works until it comes to the rotator.
Here is the page - also very simple:
| <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> |
| <style type="text/css"> |
| .itemTemplate |
| { |
| text-align: center; |
| padding: 6px; |
| border: solid 1px #dddddd !important; |
| } |
| </style> |
| </asp:Content> |
| <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server" DefaultLoadingPanelID="LoadingPanel1"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="rrRot"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="imgPreview" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <telerik:RadAjaxLoadingPanel ID="LoadingPanel1" runat="server" Transparency="30" BackColor="#E0E0E0"> |
| <img src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' alt="Loading..." style="border: 0;" /> |
| </telerik:RadAjaxLoadingPanel> |
| <asp:Image ID="imgPreview" runat="server" Width="600px" ImageUrl="~/Images/Gallery/ASau1.jpg" /> |
| <br /> |
| <telerik:RadRotator ID="rrRot" runat="server" PauseOnMouseOver="false" OnItemClick="rrRot_ItemClick" Width="670px" Height="100px"> |
| <ItemTemplate> |
| <div class="itemTemplate"> |
| <img src='<%# DataBinder.Eval(Container.DataItem, "Image") %>' alt='gallery image' width="120" /> |
| </div> |
| </ItemTemplate> |
| </telerik:RadRotator> |
| </asp:Content> |
You can see this page on REMOVED - SOLVED
I changed the size of the imgPreview to make the things a bit larger.
The result is in REMOVED - SOLVED
With FF 3.0.5 it works as expected - at least when I turn of "PauseOnMouseOver" because this sometimes stops the animation.
It goes than into a state where it does not scroll - but when I enter with the mouse and go out again it scrolls for some frames than it stops again.....
But anyhow - I don't really need PauseOnMouseOver.
But when you whatch the page with IE 7 - it is in simply words "unusable".
The Rotator is not included in scrolling.
If you load the page it is below the containing div.
When you scroll down an click on an image - it is positioned inside the frame.
But scrolling scrolls only the imgPreview not the rotator....
If you scroll up and click again -- it is displayed again below the div.
I don't think this is what you mean when you say:
Wide Cross-browser Support
RadControls for ASP.NET AJAX provides a consistent experience across all the major browsers: Internet Explorer, Firefox, .....
:)
Just kidding - but help would be great!!
Regards
Manfred
