<div class="content container"> <div id="error-messages"></div> @{ Html.EnableClientValidation(true); } @( Html.Kendo() .Grid<SearchBandModel>() .Name("SearchBandList") .DataSource(binding => binding .Ajax() .Model(m => { m.Id("Myfield"); m.Id(a => a.SearchBandId); m.Field(a => a.Name).Editable(true); m.Field(a => a.RegionName).Editable(true); m.Field(a => a.AvailableRegions).Editable(true); m.Id(a => a.RegionId); m.Field(a => a.LowerBound).Editable(true); m.Field(a => a.UpperBound).Editable(true); m.Field(a => a.IsSmsSourcing).Editable(true); })
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)