This question is locked. New answers and comments are not allowed.
I'm able to see the 'edit' link as well as the 'update' 'cancel' - however, none of the rows have textboxes to allow editing?
| <%= |
| Html.Telerik().Grid(Model) |
| .Name("UsersListGrid") |
| .DataKeys(d => d.Add(c => c.CustomerNumber)) |
| .DataBinding(dataBinding => dataBinding |
| .Server() |
| .Select("CustomerAccounts", "AccountManagement") |
| .Update("SaveCustomer", "AccountManagement")) |
| .Columns(col => |
| { |
| col.Command(commands => commands.Edit()); |
| col.Bound(c => c.CustomerNumber).Title("CustomerNo"); |
| col.Bound(c => c.UserName).Title("UserName"); |
| }) |
| .Sortable() |
| .Pageable(c => c.Position(GridPagerPosition.Bottom))%> |