B2017-041 refresh the table in the procedure editor after it was pasted via the CopyStep function

This commit is contained in:
John Jenko 2017-09-13 13:15:51 +00:00
parent f01daddf8d
commit bf2fa66a4a

View File

@ -619,6 +619,8 @@ namespace VEPROMS.CSLA.Library
{ {
string key = tmp.ContentID.ToString(); string key = tmp.ContentID.ToString();
ConvertListToDictionary(); ConvertListToDictionary();
if (tmp.MyGrid != null) // B2017-041 refresh the table (grid) on the screen to show the transition changes
GridInfo.Refresh(tmp.MyGrid);
if (_CacheByPrimaryKey.ContainsKey(key)) if (_CacheByPrimaryKey.ContainsKey(key))
foreach (ContentInfo tmpInfo in _CacheByPrimaryKey[key]) foreach (ContentInfo tmpInfo in _CacheByPrimaryKey[key])
{ {