Update 20250117 12:30
This commit is contained in:
@@ -979,6 +979,24 @@ namespace OnDoc.UICintrols
|
||||
e.Graphics.DrawLine(borderPen, e.Bounds.Left, e.Bounds.Bottom, e.Bounds.Right, e.Bounds.Bottom);
|
||||
return;
|
||||
}
|
||||
if (e.Column.MappingName == "Erstellt am")
|
||||
{
|
||||
var f = e.Column.Format;
|
||||
var selectedItem = e.DataRow;
|
||||
var dataRow = (e.DataRow.RowData as DataRowView).Row;
|
||||
e.DisplayText = dataRow["Erstellt am"].ToString();
|
||||
//e.DisplayText = e.DisplayText.ToString("dd.MM.yyyy hh:mm:ss");
|
||||
//int i = 0;
|
||||
}
|
||||
if (e.Column.MappingName == "Mutiert am")
|
||||
{
|
||||
var f = e.Column.Format;
|
||||
var selectedItem = e.DataRow;
|
||||
var dataRow = (e.DataRow.RowData as DataRowView).Row;
|
||||
e.DisplayText = dataRow["Mutiert am"].ToString();
|
||||
//e.DisplayText = e.DisplayText.ToString("dd.MM.yyyy hh:mm:ss");
|
||||
//int i = 0;
|
||||
}
|
||||
if (e.Column.MappingName == "fileext")
|
||||
{
|
||||
try
|
||||
|
||||
Reference in New Issue
Block a user