BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
@(Html.Syncfusion().RichTextEditor(
"Comments").ShowToolBar(false).ShowInsertFormElement(false).ShowFontOption(false).ShowHtmlSource(false).AllowEdit(true).Enable(true))Hi Arvind,
Thank you using Syncfusion products.
Can you please attach the sample for reproducing the
reported error along with the system requirements [Product Version, .NET
Framework Version, Browser Information, Operating System, Visual Studio
Version]. We will check the sample and update more details once the
details are shared with us.
Thanks,
Rajaveni
Hi Arvind,
RichTextEditor is exposed to edit in chrome and Firefox browsers. In case of Internet Explorer,it does not allow the content to edit since the control was not focused properly .So we suggest you to set content editable as True after some delay in RTE. We have prepared a sample with RichTextEditor in PartialView and RichTextEditor is overloaded to satisfy your requirement.
<code>
[RTE.cshtml(PartialView)]
<script type="text/javascript">
function onLoad(sender, args){
var frame = document.getElementById('Comments_IFrame');
var frameDoc = frame.contentDocument || frame.contentWindow.document;
if ($.browser.msie)
frameDoc.body.contentEditable = true;
}
</script>
@(Html.Syncfusion().RichTextEditor("Comments").ShowToolBar(false).ShowInsertFormElement(false).Width(450).ShowFontOption(false).ShowHtmlSource(false).AllowEdit(true).Enable(true).ClientSideOnLoaded("onLoad"))
</code>
We have prepared a simple sample to exhibit this behavior. It is available in the following link.
Please let us know if you require further assistance on this.
Regards,
Rajaveni