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

Prometheus RadSplitter

1 Answer 105 Views
Splitter
This is a migrated thread and some comments may be shown as answers.
Ralphael
Top achievements
Rank 1
Ralphael asked on 26 Nov 2007, 09:29 PM
I have an issue with using The Prometheus RadSplitter control. The issue I have is adding another Telerik server control within a RadPane. When I scroll the content, the Telerik server control floats in a fixed position on the web page when scrolling is enable for the user to view all the content on the web page. I attempted to fixed the Telerik server control, in this case, a RadCalendar control in a html table to fix the controls location; the method did not work. I also placed other Telerik server control on the web page and I obtain the same results as before. Therefore, how does one implement multiple telerik server controls within a RadPane when a Telerik RadSplitter control is used.

Also, please note, I do not have the issue when I use Microsoft Server controls.

Thus, has anyone obtain the same results. If so, how did you solve the issue.

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 27 Nov 2007, 03:25 PM
Hello Ralphael,
Please have a look at this online article. The solution proposed there applies to all cases when you have a control with relative position placed inside a RadPane. 

We have it on our TODO list to improve the behavior of that RadPanes in such scenarios, but for the time being, I cannot give you an estimate when this will be done. 

In case you mean that your calendar is a popup, you can hide the popup once you start scrolling the content of the RadPane - just execute the following function when the RadSplitter fires its ClientLoaded event:
<script type="text/javascript">        
function SplitterLoaded(splitter, args)        
{        
   var pane = splitter.GetPaneById('RadPane2');        
   var content = pane.GetContentContainerElement();        
   content.onscroll = function()              
   {              
       var picker = <%= RadDatePicker1.ClientID %>;     
       if (picker.IsPopupVisible())     
       {     
          picker.TogglePopup();     
       }    
    }         
}        
    </script>     
 


All the best,
Tsvetie
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Splitter
Asked by
Ralphael
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or