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

OverflowBehavior="Expand" and RadPane

3 Answers 200 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Gary
Top achievements
Rank 2
Gary asked on 21 May 2008, 02:29 AM
Greetings,

I'm having trouble getting the Splitter/RadPane scroll to function correctly with Scheduler OverflowBehavior="Expand."  Basically I want the scheduler width=100% and the height to expand/contract as required by the content. 

So far I'm only able to get the scheduler's header to scroll in IE7.  The rest of the content remains fixed in place.  I've tried placing the scheduler inside a <div> with a set height as recommended in previous posts, but doesn't work.  Seems to work ok in Firefox.

Can you please post a simple working example with overflowbehavior=expand and radpane scrolling the schduler's content?

Thanks,

Gary.

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 23 May 2008, 04:03 PM
Hello Gary,

This problem occurs because the content area of RadScheduler has position:relative, which requires RadPane to have position:relative as well. Please, try the following fix:

<telerik:RadSplitter ID="RadSplitter1" runat="server">  
            <telerik:RadPane ID="RadPane1" CssClass="Fix" runat="server">         
        <telerik:RadScheduler ID="RadScheduler1" ...> 

.Fix  
{  
    position:relative;  
}  
</style>    
</head> 




Sincerely yours,
Peter
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Nicolaï
Top achievements
Rank 2
answered on 06 Sep 2012, 10:17 AM
What if the scheduler is in the radpane, using contenturl?
(I have a support ticket on this... Kinda urgent, so I try the forum too)
0
Plamen
Telerik team
answered on 07 Sep 2012, 09:35 AM
Hi,

 If you do not what the horizontal scroll we recommend you to set the Width of RadScheduler to a particular value and remove the ColumnWidth settings. 

Hope this will be helpful.

Greetings,
Plamen
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
Scheduler
Asked by
Gary
Top achievements
Rank 2
Answers by
Peter
Telerik team
Nicolaï
Top achievements
Rank 2
Plamen
Telerik team
Share this question
or