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

ContentContainer's height automaticly set to auto?

1 Answer 58 Views
Dock
This is a migrated thread and some comments may be shown as answers.
staron
Top achievements
Rank 1
staron asked on 12 Jun 2009, 12:48 PM
This does that when content is 'bigger' than the container, it just hides it instead of showing scrollbars. Happened after the last hotfix.

Any suggestions on how to solve?

1 Answer, 1 is accepted

Sort by
0
Obi-Wan Kenobi
Top achievements
Rank 1
answered on 17 Jun 2009, 12:38 PM
I tested the following code with 2009 Q2 beta and everithing seems to be fine:
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head runat="server">  
    <title></title>  
</head> 
<body> 
    <form id="form1" runat="server">  
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">  
    </telerik:RadScriptManager> 
    <div> 
    </div> 
    <telerik:RadDockZone ID="dz1" runat="server" Width="400px">  
        <telerik:RadDock ID="RadDock1" runat="server" Width="300px" Height="300px">  
            <ContentTemplate> 
                <div style="width: 600px; height: 600px">  
                </div> 
            </ContentTemplate> 
        </telerik:RadDock> 
    </telerik:RadDockZone> 
    </form> 
</body> 
</html> 

Tags
Dock
Asked by
staron
Top achievements
Rank 1
Answers by
Obi-Wan Kenobi
Top achievements
Rank 1
Share this question
or