Save the UserID when a Grid is changed.

Disable Drag and Drop for Steps, since this code was not working properly.
Changed logic to handle folders with identical names.  The user is informed, and the code no longer crashes.
This commit is contained in:
Rich
2013-09-09 15:54:50 +00:00
parent eb92e89186
commit 9c8cfe9920
2 changed files with 59 additions and 21 deletions

View File

@@ -640,12 +640,14 @@ namespace Volian.Controls.Library
//if (itm.MyContent.Text != searchableText)
//{
itm.MyContent.Text = searchableText;
itm.MyContent.UserID = Volian.Base.Library.VlnSettings.UserID;
itm.MyContent.DTS = DateTime.Now;
//}
}
else
{
itm.MyContent.Text = searchableText;
itm.MyContent.UserID = Volian.Base.Library.VlnSettings.UserID;
itm.MyContent.DTS = DateTime.Now;
}
if (!MyFlexGrid.IsRoTable)itm.MyContent.Text = searchableText;