We have made a custom control by overriding GridViewTextBoxColumn as shown below. Mouse wheel scroll is not working. I am not getting any property to set for Mouse wheel scrollas well.
using System.Data;
using System.Drawing;
using Telerik.WinControls;
using Telerik.WinControls.UI;
using System;
using System.ComponentModel;
using System.Windows.Forms;
using System.Text.RegularExpressions;
namespace Viacom.Alias.UserControls
{
public class GridViewCustomColumn : GridViewTextBoxColumn
{
#region Variables
public string DisplayMember { get; set; }
public string CodeMember { get; set; }
public string CellDataType { get; set; }
public string CellMask { get; set; }
public string CellDropDown { get; set; }
public string CellDropDownCriteria { get; set; }
public bool IsClearable { get; set; }
public int DropDownHeight { get; set; }
AliasDateEditor dateEditor;
RadMaskedEditBoxEditor maskEditor;