Is there any way to change the name of the embedded hidden input field of a #RichTextEditor?
Why isn't this name set correctly in the first place? The id is fine, but the name should be "Script.Content" - then the ModelBinder just sets my property correctly for me on post backs.
this:
@{Html.Syncfusion().RichTextEditor(Html.IdFor(model => model.Content).ToString()).Text(Model.Content).Render();}
produces this:
<input name="Script_Content" id="Script_Content_hiddenField" type="hidden"/>
but I want this:
<input name="Script.Content" id="Script_Content_hiddenField" type="hidden"/>