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

[Solved] How to edit collection in cell

0 Answers 10 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.
Beast
Top achievements
Rank 1
Beast asked on 13 Apr 2012, 03:36 AM
Hi
I need to edit orders collection in cell. How can i do it? My models like below and i use ajax binding.
public
class Customer
{
    public Customer()
    {
       this.Orders=new List<Order>();
    }
    public string Name {get;set;}
    public List<Order> Orders{get;set;}
}
public class Order
{
    public string Product{get;set;}
    public int Count{get;set;}
}

thanks
Tags
Grid
Asked by
Beast
Top achievements
Rank 1
Share this question
or