I am using @Html.Syncfusion().RichTextEditor("RTE").Text(Model.Definition).ShowHtmlSource(false).AllowEdit(true) in my View/Edit.cshtml and the data is displayed fine.
Then, I would like to save my changes. I am having difficulty retrieve the "RTE" content in the Edit Controller [HttpPost] using the following:
[HttpPost]
public ActionResult Edit(int id, FormCollection formCollection, string[] selectedPulldownData)
{
//formCollection["RTE"]
}
In the debugger, I can see the formCollection["RTE"] value but is unable to retrieve the Rich Text Content.
Sorry if this is a simple question. I am new at MVC/RAZOR/Syncfusion and in the process of trying to learn them all at the same time. Help!