Anybody experienced this using Kendo UI Editor?
When typing a lot of text without a newline (Enter-button) everything saves just fine, but if anybody press the enterbutton to make the text more readable, the data just does not get saved. Being newbie on both mvc and kendo, I really need help getting past this problem..
Using OpenAccess ORM.
Thanks in advance.
When typing a lot of text without a newline (Enter-button) everything saves just fine, but if anybody press the enterbutton to make the text more readable, the data just does not get saved. Being newbie on both mvc and kendo, I really need help getting past this problem..
Using OpenAccess ORM.
Thanks in advance.
public partial class Exercises{private string _note;public virtual string Note { get { return this._note; }set { this._note = value; }}}Exercise.Note = drill.Comments;DB.SaveChanges();<div class="editor-label"> @Html.LabelFor(m=>m.Comments)</div><div class="editor-field"> @Html.EditorFor(m=>m.Comments) @Html.ValidationMessageFor(m=>m.Comments)</div>[Display(Name = "Comments", ResourceType = typeof(DisplayNameStrings)), UIHint("Editor")] public string Comments { get; set; }