This question is locked. New answers and comments are not allowed.
@{Html.Telerik().Grid<ImportTransaction>(Model.ImportTransactions) .Name("grdImportFiles") .TableHtmlAttributes(new { id = "grdImportTransactions" }) .DataKeys(keys => keys.Add(o => o.ID)) .Columns(columns => { columns.Bound(o => o.ID).Hidden(); columns.Bound(o => o.Date).Width(80).Format("{0:MM/dd/yy}"); columns.Bound(o => o.Description); columns.Bound(o => o.TransactionAmount).Width(100).Title("Amount").Format("{0:c}") .HtmlAttributes(new { style = "text-align:right;" }) .HeaderHtmlAttributes(new { style = "text-align:right;" }); columns.Bound(o => o.ReferenceNumber).Title("Reference").Width(120); }) .HtmlAttributes(new { style = "width:100%" }) .Scrollable(scrolling => scrolling.Height(400)) .Footer(false) .Render();}Dewey
