Let's say I have the following model
public class SomeModel
{
public int Id {get;set;}
public string Property1 {get;set;}
public string Property2 {get;set;}
public string Property3 {get;set;}
}
I also have a grid with the following columns (simplified here):
.Columns(columns =>
{ columns.Bound(x => x.Property1);
columns.Bound(x => x.Property2);
columns.Command(commands =>
{
commands.Edit();
commands.Delete();
})
})
As you can see Property3 is not specified. When you use grid AJAX editing, then 'Property3' is not passed to a server as it was done in Q1 2011. It would be great to have an option to enable this behavior