I have a radgrid with a details table with a formtemplate for editing. so it's a grid with two levels, when I am editing at the child level the modal popup show up fine but When I click the update button, it does all the work intended but does not close. It all works fine for inserting a record or canceling. and in the first lever both the edit and insert work fine, but just the child level edit is causing this problem. I've read a couple things to try and that is adding AllowAutomaticUpdates="false" and also adding
grdVcntn.MasterTableView.IsItemInserted = False
grdVcntn.MasterTableView.Rebind() to the _ItemCommand for the e.CommandName I have and neither worked.
I am also binding both grids in the backend using _NeedDataSource and _DetailTableDataBind. Is there any other sudgestions for fixing this.