This commit is contained in:
2019-02-14 18:45:01 +00:00
parent 1dbba7455d
commit 70e8bfdb7e

View File

@@ -10833,8 +10833,13 @@ namespace AyaNova
//case 1105 //case 1105
if (e.Cell.Column.Key == "REMOVE") if (e.Cell.Column.Key == "REMOVE")
gridPartRequests.DisplayLayout.ActiveRow.Delete(); gridPartRequests.DisplayLayout.ActiveRow.Delete();
else else if (e.Cell.Value != null)
Util.EditRecord((GridNameValueCellItem)e.Cell.Value); {
//case 3631
GridNameValueCellItem TheValue = (GridNameValueCellItem)e.Cell.Value;
if (TheValue.Value != Guid.Empty)
Util.EditRecord(TheValue);
}
} }
#endregion #endregion