Banging my head here!
For testing purposes I load the content of a RadTextBox and a RadEditor with some sample text on load. Then, on postback I can get the data from the RadTextbox just fine, but, the data from the RadEditor is exactly the same from what was loaded! It's like nothing is being posted back for me to get the values from. Has anyone seen this before?
In my page on postback I can do txtBody.text and see my new changed values, but, RadEdit01.Content nothing has changed, even though I typed in different text.
Nothing fancy is going on, but I am working within master pages. Not sure why that would cause any issues. Nothing is inside a content area for Ajax calls. I can't figure this one out!
For testing purposes I load the content of a RadTextBox and a RadEditor with some sample text on load. Then, on postback I can get the data from the RadTextbox just fine, but, the data from the RadEditor is exactly the same from what was loaded! It's like nothing is being posted back for me to get the values from. Has anyone seen this before?
<tr> |
<td class="Label">Body</td> |
<td><telerik:RadTextBox ID="txtBody" Height="200" Width="500px" runat="server" Skin="Office2007" CssClass="InputBox" TextMode="MultiLine" /></td> |
</tr> |
<tr> |
<td class="Label">Body</td> |
<td> |
<telerik:RadEditor ID="RadEdit01" runat="server" Width="500px" Height="300" Skin="Office2007" AutoResizeHeight="true"> |
<Tools> |
<telerik:EditorToolGroup> |
<telerik:EditorTool Name="Bold" /> |
<telerik:EditorTool Name="Italic" /> |
<telerik:EditorTool Name="Underline" /> |
<telerik:EditorTool Name="Cut" /> |
<telerik:EditorTool Name="Copy" /> |
<telerik:EditorTool Name="Paste" /> |
<telerik:EditorTool Name="FontName" /> |
<telerik:EditorTool Name="RealFontSize" /> |
</telerik:EditorToolGroup> |
<telerik:EditorToolGroup> |
<telerik:EditorTool Name="InsertTable" /> |
<telerik:EditorTool Name="InsertImage" /> |
<telerik:EditorTool Name="LinkManager" /> |
<telerik:EditorTool Name="Unlink" /> |
<telerik:EditorTool Name="InsertOrderedList" /> |
<telerik:EditorTool Name="InsertUnorderedList" /> |
</telerik:EditorToolGroup> |
</Tools> |
</telerik:RadEditor> |
</td> |
</tr> |
In my page on postback I can do txtBody.text and see my new changed values, but, RadEdit01.Content nothing has changed, even though I typed in different text.
Nothing fancy is going on, but I am working within master pages. Not sure why that would cause any issues. Nothing is inside a content area for Ajax calls. I can't figure this one out!