I have the following object which I bind to a Form in my view:
public class Foo
{
public List<Bar> Items { get; set; }
}
public class Bar
{
public List<string> Lines { get; set; }
public int Resolution { get; set; }
}
I am presenting this information to the user as various groups of RadioFields.
How do I bind the RadioFields so that they display a group of RadioFields for each item in Items. Each group of RadioFields having an option for each Lines and that each group of RadioFields is bounded to Resolution?