I am trying to use the radEditor in a custom control in my control library. However, since the editor is being added to the control dynamically, the content is being lost on postback. Is there any way to retrieve the content of the editor? Its not in the request object, is it?
Have you tried including a hidden field on the control that persists viewstate through postback? I have a similar setup in one of my projects and that works well for me. I just drop the editor content into there and use content on postback.