or
Model://after search,my Model.Body is here <table> <tbody> <tr><td align="center" style="font-weight:bold;"> <span style="background-color:#ccff33;">My Model Body Is Here</span> </td></tr> </tbody> </table>View: @(Html.Kendo().Editor() .Name("Body") .Tools(tools => tools.Clear() .Bold().Italic().Underline().Strikethrough() .JustifyLeft().JustifyCenter().JustifyRight().JustifyFull() .InsertUnorderedList().InsertOrderedList() .Outdent().Indent() .CreateLink().Unlink() .InsertImage() .SubScript() .SuperScript() .ViewHtml() .FontName() .FontSize() .FontColor().BackColor() ) .HtmlAttributes(new { style = "width:90%;height:500px" }) .Value(Model.Body))Controller: [OutputCache(Duration = 0)] public ActionResult Index(int id=0) { return View(ModelRepository.GetModelById(id)); }

var alarmsViewModel = kendo.observable({ alarms: [ { time : "13:00", note : "Note goes here", daysOfWeek : "Every Monday", onOff : "off", snooze : "off", alarmType : "ring" }, { time : "11:30", note : "Note goes here 2", daysOfWeek : "Every Monday", onOff : "off", snooze : "off", alarmType : "ring" } ], add: function(e) { this.get("alarms").push({ time: this.get("time"), note: this.get("note"), daysOfWeek: this.get("daysOfWeek"), onOff: this.get('onOff'), snooze: this.get('snooze'), alarmType: this.get('alarmType') }); e.preventDefault(); }, onClick: function(e) { kendoConsole.log("event :: click", e); }});<input type="time" data-bind="value:time">