using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Safedispatch_4_0.Radio; using Telerik.WinControls.UI; namespace Dispatcher.maptab.UIClasses { public class RecordingGridColumn : GridViewDataColumn { public RecordingGridColumn(string fieldName) : base(fieldName) { } public override Type GetCellType(GridViewRowInfo row) { if (row is GridViewDataRowInfo) { return typeof(RecordingGridCellElement); } return base.GetCellType(row); } } }