BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
@(Html.EJ().Grid<MVCGridEditing.OrdersView>("FlatGrid") .Datasource((IEnumerable<object>)ViewBag.datasource) .AllowPaging() /*Paging Enabled*/ .EditSettings(edit=>{edit.AllowAdding().AllowDeleting().AllowEditing(); }) .ToolbarSettings(toolbar => { …. }) .Columns(col => { …. col.Field("Freight").HeaderText("Freight").TextAlign(TextAlign.Right).Width(75).EditType(EditingType.Numeric) .NumericEditOptions(new EditorProperties() { DecimalPlaces = 3 }).Add(); })) |