I've got trouble with the RadEditor within the RadTabStrip. It's working well if I do not set the EditModes. But as soon I set the EditModes to "html", which obviously only support HTML Input.
It seems that the Content Form (in this case the Iframe in the RadEditor) is disabled, because I can not insert Text and neither read the text which I've set in the Code behind...
I debugged it with the IE DEVBar and saw that there are two IFRAMES both with ID "RadEditor1_contentIframe". The first one is for the Design and Preview mode and the second for the HTML Mode. In this case the 1. Contentframe should not be displayed which is correct the style is set to DISPLAY: none;. So obviously the second Iframe should be visible, which is almost correctly it has no style attribut "Display:none" but it has a Style Attribut HEIGHT: 0px which makes the HTML Content IFRAME invisible. When I set this in the DevBar to 100% I see my Content which I set in the Code behind.
Initial position:
HTML View
<telerik:RadTabStrip runat="server" ID="ProcessViewTabs" Skin="Vista" SelectedIndex="0" MultiPageID="ProcessMultiView">
<Tabs>
<telerik:RadTab Text="Tab 1" runat="server" Enabled="true" PageViewID="Tab1View"></telerik:RadTab>
<telerik:RadTab Text="Tab 2" runat="server" Enabled="true" PageViewID="Tab2View"></telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
<telerik:RadMultiPage runat="server" ID="ProcessMultiView" SelectedIndex="0">
<telerik:RadPageView ID="Tab1View" runat="server"> </telerik:RadPageView>
<telerik:RadPageView ID="Tab2View" runat="server">
<telerik:RadEditor runat="server" id="RadEditor1" EditModes="Html"></telerik:RadEditor>
</telerik:RadPageView>
</
telerik:RadMultiPage>
Code behind:
RadEditor1.Content = "Test Content!";