29 lines
606 B
C#
29 lines
606 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 LiveGridColumn : GridViewDataColumn
|
|
{
|
|
public LiveGridColumn(string fieldName)
|
|
: base(fieldName)
|
|
{
|
|
}
|
|
|
|
public override Type GetCellType(GridViewRowInfo row)
|
|
{
|
|
if (row is GridViewDataRowInfo)
|
|
{
|
|
return typeof(LiveGridCellElement);
|
|
}
|
|
return base.GetCellType(row);
|
|
}
|
|
|
|
|
|
}
|
|
}
|