This question is locked. New answers and comments are not allowed.
Hi All Telerik team,
I have one problem when Update grid line.
When I Click on Update button on Grid.Post method is fire.I m using TryUpdateModel(Model) to update My model.The Model is update but its child list not update. example like I have Employee class and in that class i have List<empAddress>.so when i update the model the employee model is update but the <empAddress> not update.please reply me. I want to update list also which in the Employee model.
I have one problem when Update grid line.
When I Click on Update button on Grid.Post method is fire.I m using TryUpdateModel(Model) to update My model.The Model is update but its child list not update. example like I have Employee class and in that class i have List<empAddress>.so when i update the model the employee model is update but the <empAddress> not update.please reply me. I want to update list also which in the Employee model.
public class Employee
{
public string AccountId { get; set; }
public string AccountName { get; set; }
public List<EmpAddress> empAddress{ get; set; } // this listNot update TryupdateModel
}