This is a migrated thread and some comments may be shown as answers.

[Solved] Problems with Server Edit Mode

1 Answer 76 Views
Grid
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Steve
Top achievements
Rank 1
Steve asked on 03 May 2010, 05:28 PM
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))%> 

1 Answer, 1 is accepted

Sort by
0
Steve
Top achievements
Rank 1
answered on 04 May 2010, 04:48 AM
Nevermind - I didnt have any public setters on the model
Tags
Grid
Asked by
Steve
Top achievements
Rank 1
Answers by
Steve
Top achievements
Rank 1
Share this question
or