27 lines
613 B
C#
27 lines
613 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Telerik.WinControls.UI;
|
|||
|
|
|||
|
namespace Dispatcher.maptab.UIClasses
|
|||
|
{
|
|||
|
public class HistoryGridColumn : GridViewDataColumn
|
|||
|
{
|
|||
|
public HistoryGridColumn(string fieldName)
|
|||
|
: base(fieldName)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public override Type GetCellType(GridViewRowInfo row)
|
|||
|
{
|
|||
|
if (row is GridViewDataRowInfo)
|
|||
|
{
|
|||
|
return typeof(HistoryGridCellElement);
|
|||
|
}
|
|||
|
return base.GetCellType(row);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|