This is a migrated thread and some comments may be shown as answers.

RadRotator in a floating RadDock

5 Answers 49 Views
Rotator
This is a migrated thread and some comments may be shown as answers.
Doug
Top achievements
Rank 1
Doug asked on 12 Jan 2010, 11:27 PM
I have a RadRotator in a floating RadDock.  The rotator's height is greater than the RadDock and the scroll bar is turned on.  The elements inside of the rotator show beyond the RadDock and if you scroll the RadDock the contents of the rotator sometimes do not scroll with the scroll bar and sometimes they do but it is hugely delayed.  It takes 10-20 seconds or more for the RadRotator contents to scroll (when they do).

Attached is a picture of the results.

5 Answers, 1 is accepted

Sort by
0
Doug
Top achievements
Rank 1
answered on 13 Jan 2010, 05:03 PM
This picture is the raddock scrolled but the contents of the radrotator stays put.  There is a line to show where they should line up.

UPDATE: I found that the following code fixes this portion of the problem:
$find('<%=RadRotator1.ClientID%>').repaint();


The problem is running this line on scroll complete of the RadDock.
0
Fiko
Telerik team
answered on 15 Jan 2010, 02:16 PM
Hi Doug,

Indeed, the RadRotator control needs to be repainted in such scenarios and I recommend  you use the solution you already found.

Please do not hesitate to contact us if you experience any further problems. 

All the best,
Fiko
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Doug
Top achievements
Rank 1
answered on 15 Jan 2010, 02:18 PM
The fix was only one part of this.  There is still the fact that all the elements that are outside the raddock when scrolling, are still shown outside the raddock.  Refer to the first attached picture.  The repaint does not fix this.

Thanks
Doug
0
Accepted
Fiko
Telerik team
answered on 20 Jan 2010, 11:41 AM
Hello Doug,

The behavior you experience is a problem in IE6/7 browsers itself. More details on the subject can be read in this post. The solution using RadDock is to add the following CSS property to the <head> of the page that contains the RadDock control:

<style type="text/css">
    .rdContent
    {
        position: relative;
    }
</style>

This should fix the problem on your side. In case, however, the problem still exists, please send open a new support ticket and send me a project that reproduce the problem. I will check it and do my best to provide a working solution as soon as possible.

Regards,
Fiko
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Doug
Top achievements
Rank 1
answered on 20 Jan 2010, 02:53 PM
So far I put this CSS property in and it has fixed both problems.  Not only does the content no longer show outside the dock but the contents scroll correctly as well. 

Thank you so much for your response,
Doug
Tags
Rotator
Asked by
Doug
Top achievements
Rank 1
Answers by
Doug
Top achievements
Rank 1
Fiko
Telerik team
Share this question
or