Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
columns.Bound(p => p.StateId).Width(80).ClientTemplate("#=State#");
columns.Bound(p => p.State).Hidden(true);
public class MarkupState
{
public int PayrollMarkupId { get; set; }
public string State { get; set; }
[UIHint("StatesEditor")]
public int StateId { get; set; }
public decimal? MaintenancePercentage { get; set; }
public decimal? OfficePercentage { get; set; }
}
@model int?
@(Html.Kendo().DropDownListFor(m => m)
.DataValueField("StateId")
.DataTextField("ShortName")
.BindTo((System.Collections.IEnumerable)ViewData["states"])
)