I found a Telerik KB article that achieves the same thing I'm trying to do -- Use a RadEditor in the EditFormTemplate.
http://www.telerik.com/support/kb/article/b454K-tae-b454T-cbb.aspx
However, in the Prometheus release, the Html attribute has been replace with the Content attribute. How can I bind my database values to the RadEditor's Content attribute?
Pre-Prometheus we simply used Html='<%# Bind("DbColumn") %>'
I've tried the following and it does not work:
http://www.telerik.com/support/kb/article/b454K-tae-b454T-cbb.aspx
However, in the Prometheus release, the Html attribute has been replace with the Content attribute. How can I bind my database values to the RadEditor's Content attribute?
Pre-Prometheus we simply used Html='<%# Bind("DbColumn") %>'
I've tried the following and it does not work:
<telerik:RadEditor runat="server" ID="RadEditor1"
ToolsFile="~/xml/BasicTools.xml">
<Content>
<%# Bind("dbColumn") %>
</Content>
</telerik:RadEditor>
