Skip to main content

Posts

Showing posts with the label kendo ui dropdownlist mvc update index

kendo ui dropdownlist mvc update index

@model MvcApplication1.Models.Contract @{     MvcApplication1.Models.UserSession userSession = (MvcApplication1.Models.UserSession)Session[ "userSession" ]; } @ using (Html.BeginForm()) {     @ Html.AntiForgeryToken()     < div class ="form-group">         @ Html.LabelFor(model => model.CType, new { @class = "control-label col-sm-4" })         < div class ="col-sm-8 col-md-6">             @( Html.Kendo().DropDownListFor(model => model.CType)                     .Name( "CTypeID" )                     )             @ Html.Validation...