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

RadColorPicker doesn't move when scrolling

1 Answer 33 Views
ColorPicker
This is a migrated thread and some comments may be shown as answers.
Bertie
Top achievements
Rank 1
Bertie asked on 27 Jan 2012, 10:13 AM
I have a RadColorPicker (Telerik) inside of a HTML tablecell. The HTML table is within a RadPane that is vertically scrollabe. As soon as the user starts scrolling, the RadColorPicker stays at the same position and is thus 'floating' up and down the screen. I have inserted javascript to stop the colorpalette from floating, thats not the issue.

Any ideas as to how I can make the colorpicker move with the rest of the elements?

The problem happens only on IE 9.0.4.

Thanks

1 Answer, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 31 Jan 2012, 05:27 PM
Hi Bertie,

Most probably the described behavior is caused by a know positioning bug under IE6/7. The relatively positioned elements inside containers with overflow remain fixed. You can alter this effect by adding the following CSS code snippet in the head section of your page:
<style type="text/css">
    .rspPane div[id*="SPLITTER"]
    {
        position: relative;
    }
</style>

If you are still having difficulties after applying the suggested solution, please provide the structure of your page so that I can examine the exact setup and provide a more to the point answer.

All the best,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
ColorPicker
Asked by
Bertie
Top achievements
Rank 1
Answers by
Slav
Telerik team
Share this question
or