I have a RadGrid that is bound to a list<T> where T is:
public class FullProductWithDescription | |
{ | |
public int ID { get; set; } | |
public int MainProductID { get; set; } | |
public string MainProductDescription { get; set; } | |
public int SubProductID { get; set; } | |
public string SubProductDescription { get; set; } | |
public bool Kit { get; set; } | |
} |
The RadGrid is built programmatically in the page's Init event handler. I want to add two template columns (1 check box, and 1 text box). So when the end user clicks the check box the text box becomes enabled. If more items are added to my list<T> can I have the new records show in the grid while preserving the states of the check box and text box? Obviously when I call DataBind on the grid I get the new rows but the check box and text box data disappear. Any ideas?
Thanks,