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

radcontrols floating with splitter scroll

3 Answers 38 Views
Slider
This is a migrated thread and some comments may be shown as answers.
Gilberto
Top achievements
Rank 1
Gilberto asked on 02 Apr 2009, 10:52 AM

I have worked around the floating issue with some parts of RadControls e.g. radeditor and upload, applying the position:absolute property to a css class in fildset container. The floating issue is solved but now the scrolling does not update the RadPane in real time mode, the radpane is update only when release mouse event occurs.

Can we refine this workaround this issue?

Thanks

Gilberto

3 Answers, 1 is accepted

Sort by
0
Gilberto
Top achievements
Rank 1
answered on 02 Apr 2009, 06:52 PM
This issue is only for IE and i am using q3 2008

Thanks again
0
Svetlina Anati
Telerik team
answered on 06 Apr 2009, 11:12 AM
Hello Gilberto,

I suggest to remove the workaround with the absolute position and to set relative position to the RadPane instead:

<head runat="server">  
    <title>Untitled Page</title> 
    <style type="text/css">  
    .ApplyPos  
    {  
       position: relative;  
    }  
    </style> 
</head> 
<body> 
    <form id="form1" runat="server">  
        <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
        </telerik:RadScriptManager> 
          <telerik:RadSplitter ID="splitter" runat="server" Width="800" Height="400">  
            <telerik:RadPane ID="pane1" runat="server" CssClass=ApplyPos>  
                <br /> 
                <br /> 
                <telerik:RadEditor ID="editor" runat="server">  
                    <Tools> 
                        <telerik:EditorToolGroup> 
                            <telerik:EditorTool Name="Copy" /> 
                            <telerik:EditorTool Name="Paste" /> 
                        </telerik:EditorToolGroup> 
                    </Tools> 
                </telerik:RadEditor> 

This should fix both the floating and the scrolling problems.

Regards,
Svetlina
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
0
Gilberto
Top achievements
Rank 1
answered on 07 Apr 2009, 10:19 AM
Thank you
Tags
Slider
Asked by
Gilberto
Top achievements
Rank 1
Answers by
Gilberto
Top achievements
Rank 1
Svetlina Anati
Telerik team
Share this question
or