If you run the sample in safari, you dont get any content area at all (just the toolbars). If you run in firefox, it may or may not load at the correct height, but it you press the HTML button the content area disappears.
Please please please can we have this looked at as a matter of urgency. I've been posting these height problems since the initial release and now we're on the third. I've found workarounds for the previous bugs, but I don't have one for this.
James
<%@ Page Language="VB" %>
<%@ Register Assembly="RadTabStrip.Net2" Namespace="Telerik.WebControls" TagPrefix="radTS" %>
<%@ 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>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID='sm1' runat='server' />
<radts:radtabstrip id="tabs" runat="server" SelectedIndex="0" MultiPageID="mvTabs" >
<Tabs>
<radts:Tab Text="Tab 1"></radts:Tab>
<radts:Tab Text="Tab 2"></radts:Tab>
</Tabs>
</radts:radtabstrip>
<table width='100%'>
<tr>
<td style="width:80px"> </td>
<td>
<radTS:RadMultiPage ID='mvTabs' runat='server' SelectedIndex="0">
<radTS:PageView ID='pg1' runat='server'>
<asp:TextBox ID='txt1' runat='server' MaxLength='80' Width='460px' />
</radTS:PageView>
<radTS:PageView ID='PageView1' runat='server'>
<telerik:RadEditor runat="server" ID="txtReturns" Skin="Vista" Width="100%">
</telerik:RadEditor>
</radTS:PageView>
</radTS:RadMultiPage>
</td>
</tr>
</table>
</form>
</body>
</html>