Hi ALL,
I need to build a RadGrid with edit capabilities for a List<Room>, where that Resources property can be edited as a databound populated CheckBoxList. What event should I use to bind that CheckBoxList to my datasource and define those selected values?
I'm probably missing something obvious, but I can't spot it. I have a structure like:
public class Room |
{ |
public string Name { get; set; } |
public List<Resource> Resources { get; set; } |
} |
public class Resource { public int Id { get; set; } public string Name { get; set; } } |
TIA,
Rubens