A recent update to 2008.1.619 appears to have broken the HeightOffset functionality. It appears the HeightOffset is properly being applied to the table inside of the splitter's div element but the div is not affected. Your own example (http://www.telerik.com/support/kb/article/b454K-tdt-b454T-cka-b454c-cka.aspx) is broken as well.
I used the following code in a web site referencing the 2008.1.619 assembly and could not see the footer (gray) in IE 7 or FF 3:
<%@ Page Language="C#" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title>Untitled Page</title> |
<style type="text/css"> |
html, body, form |
{ |
height: 100%; |
overflow: hidden; |
margin: 0px; |
padding: 0px; |
} |
</style> |
</head> |
<body> |
<form id="form1" runat="server"> |
<asp:ScriptManager ID="ScriptManager1" runat="server" /> |
<div id="header" style="height:100px;background-color:Gray;">Header</div> |
<telerik:RadSplitter ID="RadSplitter1" runat="server" Width="100%" Height="100%" |
HeightOffset="200"> |
<telerik:RadPane ID="RadPane1" runat="server"></telerik:RadPane> |
<telerik:RadPane ID="RadPane2" runat="server"></telerik:RadPane> |
</telerik:RadSplitter> |
<div id="footer" style="height:100px;background-color:Gray;">Footer</div> |
</form> |
</body> |
</html> |
We must have this functionality back, it is breaking the UI of our application.
Thanks in advance.
Regards,
Jared