Hi wondered if someone had a few pointers please - I used the FieldName property in the older version of the RadHtmlField (<radE:RadHtmlField FieldName="PublishingPageContent" runat="server" id="RichHtmlField1"/>) as a bind to the data and to bring in the desired content (ALL THIS IN A SHAREPOINT PAGE LAYOUT)- is there any way of doing that in the new RadEditor for ASP.NET AJAX - the help indicates the following 2 ways (is there another way to bind to sharepoint content?) :-
RadEditor provides 2 different ways to set its content:
RadEditor provides 2 different ways to set its content:
- Setting the content programmatically:
RadEditor1.Content = "<strong>Sample HTML Content Loaded via the Content property</strong>" - Inline in the RadEditor declaration: RadEditor offers to set content directly in the ASPX or ASCX file
<telerik:radeditor runat="server" ID="RadEditor2" Height="100px">
<Content>
<strong>Sample HTML Content set inline in the RadEditor declaration</strong>
</Content>
</telerik:radeditor>