or

<link href="http://cdn.kendostatic.com/2014.2.903/styles/kendo.common.min.css" rel="stylesheet" />
vs.<link href="http://cdn.kendostatic.com/2014.2.903/styles/kendo.common-bootstrap.min.css" rel="stylesheet" />01.@(Html.Kendo().Grid(Model.Charges)02. .Name("charges_grid")03. .Columns(columns =>04. {05. columns.Bound(charge => charge.Type)06. .Title("Charge Description");07. columns.Bound(charge => charge.Amount)08. .HtmlAttributes(new { @style = "text-align:right;" })09. .Width(100)10. .Title("Amount");11. columns.Command(command =>12. {13. command.Edit();14. command.Destroy();15. }).Width(175);16. })17. .BindTo(Model.Charges)18. .ToolBar(toolbar => toolbar.Create())19. .Editable(editable => editable.CreateAt(GridInsertRowPosition.Bottom))20. .DataSource(dataSource => dataSource21. .Ajax()22. .Model(model => model.Id(p => p.Type))23. .ServerOperation(false)24. .Create(update => update.Action("Create", "Home"))25. .Read(read => read.Action("Read", "Home"))26. .Update(update => update.Action("Update", "Home"))27. .Destroy(update => update.Action("Destroy", "Home"))28. ))01.public class Shipment02.{03. // other data members04. public string Signed { get; set; }05. public string BundleId { get; set; }06. public float TotalAmountDue { get; set; }07. 08. public ICollection<Charge> Charges { get; set; }09.}