I have a radeditor control inside an asp.net form view insert item template.
As the user types text into the radeditor, I want to display the text/html inside a seperate label (within the same insert item template) in real time. (Yes, I know that the radeditor has a preview mode, but the real time preview must be seperate to the radeditor in my scenario).
This is my server side code:
This is my JavaScript code:
Also, I have attempted to implement the
onClientLoad="onClientLoad" function of the RadEditor control, but I am unable to find the two required labels which are both inside the insert item template, such as:
<telerik:RadEditor ID="RadEditor1" runat="server" onClientLoad="OnClientLoad" />
Can anyone guide me on the correct syntax or correct coding to achieve this?
.