Hello,
Is any way to return:
1. Html with Track Change marks and comments to store it in the database for next edit session?
2. Auto accepted html.
I tried in cs: RadEditor1.Content - but it return content without changes, RadEditor1.GetHtml(EditorStripHtmlOptions.AcceptTrackChanges) - but also track changes were not accepted.
Can you provide any example, please?
Thank you!
Hi Emin,
Straight to the questions:
protected void Submit_Button_Click(object sender, EventArgs e) { TextArea1.Text = RadEditor1.Content; }
protected void Submit_Button_Click(object sender, EventArgs e) { RadEditor1.AcceptTrackChanges(); TextArea1.Text = RadEditor1.GetHtml(EditorStripHtmlOptions.AcceptTrackChanges); }