Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Hi Daniel,
I've already answered for your question on my blog ( http://marekmusielak.blogspot.com/2009/03/episerver-rich-text-editor.html )
What you need to do is to set Text property of one of the child controls of the editor:
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if (!Page.ClientScript.IsClientScriptIncludeRegistered("system.js"))
{
Page.ClientScript.RegisterClientScriptInclude("system.js",
((PageBase) Page).ResolveUrlFromUI("javascript/system.js"));
Page.ClientScript.RegisterClientScriptInclude("system.aspx",
((PageBase) Page).ResolveUrlFromUI("javascript/system.aspx"));
Page.ClientScript.RegisterClientScriptInclude("episerverscriptmanager.js",
((PageBase) Page).ResolveUrlFromUtil(
"javascript/EPiServerScriptManager.js"));
}
myHtmlEditor.InnerProperty = new PropertyLongString {EditorToolOptions = EditorToolOption.All};
}
protected void btnFill_Click(object sender, EventArgs e)
{
((HtmlEditor) myHtmlEditor.Controls[0].Controls[0]).Text = ddlOptions.SelectedValue;
}
protected void btnSend_Click(object sender, EventArgs e)
{
SetValuesForPropertyControls(myHtmlEditor);
litMessage.Text = myHtmlEditor.PropertyValue as string;
pnlMessage.Visible = true;
}
Here is the fully functional source code for what you need:
http://marasm.pl/resources/resource.php?HtmlEditorPlusFill.zip
Have added the EPiServer Editor to a page and it works great.
Now I want to fill it with content when a you select a value from adropdownlist and click a button, but I can't get it to work.
Does anybody now how?