I need to refresh a radgrid after updates to the database from a popup window. However, when there is a row in the radgrid in the parent window which is in edit mode, the radgrid does not refresh. I tried this so there will not be any rows in edit mode in the radgrid so it can refresh:
While RadGridEmpData.EditIndexes.Count > 0
RadGridEmpData.EditIndexes.Clear()
RadGridEmpData.Rebind()
End While
but the EditIndexes.count is always zero. Can I refresh the radgrid even if there is a row in edit mode? If not, then how can I clear any rows in edit mode in the rad grid?
Thanks!
Suresh