Updating ROs in tables (grids) fix.

This commit is contained in:
John Jenko 2015-12-16 19:01:08 +00:00
parent 3d44be1344
commit dc8b52035f
2 changed files with 3 additions and 0 deletions

View File

@ -520,6 +520,7 @@ namespace VEPROMS.CSLA.Library
{
retval = gg;
MyGrid.Data = MyGrid.Data.Substring(0, myIndex) + newvalue + MyGrid.Data.Substring(myIndex + myLength);
break;
}
}
}

View File

@ -502,6 +502,8 @@ namespace VEPROMS.CSLA.Library
content.UserID = Volian.Base.Library.VlnSettings.UserID;
content.DTS = DateTime.Now;
content.Save();
if (content.MyGrid != null)
GridInfo.Refresh(content.MyGrid);
}
}
}