SVN-Revision: r306
This commit is contained in:
tdx
2025-03-07 10:08:51 +00:00
parent e5c3dd9c75
commit 9d0399dbfd
@@ -916,9 +916,15 @@ namespace Lskj.ProductiSched
if (obj != null)
{
foreach (GridCell gridCell in SelectCells)
{
if (gridCell.Column.Tag != null && gridCell.Column.Tag is DateTime dateTime)
{
if (dateTime.Date >= DateTime.Now.Date)
{
bandedGridView.SetRowCellValue(gridCell.RowHandle, gridCell.Column, obj);
}
}
}
bandedGridView.PostEditor();
e.Handled = true;
}