or
@Html.TextAreaFor(m=>m.TermSheet)<br/>@Html.Kendo().EditorFor(m => m.TermSheet).HtmlAttributes(new { style = "width: 740px;height:440px" }).Encode(false)<%: Html.AntiForgeryToken() %><script type="text/javascript"> $(function () { // For the Kendo Ajax call for paging, etc. $.ajaxSetup({ // See: ValidateAntiForgeryTokenOnAllPostsAttribute "beforeSend": function (xhr) { // Affects all Ajax & Posts var securityToken = $("[name=__RequestVerificationToken]").val(); xhr.setRequestHeader("__RequestVerificationToken", securityToken); } }); });</script> ​ @(Html.Kendo().DropDownListFor(m => m.SecurityQuestion1Id) .DataTextField("Item2") .DataValueField("Item1") .BindTo(Model.SecurityQuestionOptions) .HtmlAttributes(new { style = "width:100%;" }) )