In Development
Last Updated: 12 May 2025 15:18 by ADMIN
Scheduled for 2025 Q2 (May)
In this case, we have a GridViewHyperlinkColumn in which we have a cell with an empty string or null value. Exporting the control in XLSX format leads to an exception.
In Development
Last Updated: 12 May 2025 14:41 by ADMIN
Scheduled for 2025 Q2 (May)
In this scenario, the MultiSelect option of the control is enabled. If we click and hold the mouse to select multiple cells and go over a merged cell, NullReferenceException is thrown.
Unplanned
Last Updated: 29 Apr 2025 08:39 by ADMIN
This behavior is related to how the control is measured while using the MS Form. In the given scenario, the control has many columns, and some of them are pinned. Moving to the last column and typing in the filter cell will filter the rows in the column. However, when filtering, if the row number is less than the viewport, the vertical scrollbar will disappear as it is not needed anymore, and the filter editor will be placed in the wrong column. This will mess with the filter cell editor. 
In Development
Last Updated: 28 Apr 2025 14:16 by ADMIN
Scheduled for 2025 Q2 (May)
In the current scenario, when clicking on the checkbox inside a GridViewCheckBoxColumn, the CellBeginEdit event will be called. If we cancel the event by setting the Cancel property to true, the CellBeginEdit will be called twice.
Unplanned
Last Updated: 08 Apr 2025 08:40 by ADMIN

In the following scenario, we have enabled the pager functionality of the control. If we move to a different page and then set the DataSource to Null, the page index will not be reset. 

Unplanned
Last Updated: 03 Apr 2025 07:28 by ADMIN
Created by: Julian
Comments: 1
Category: GridView
Type: Bug Report
1

The EnableHotTracking property works only in the first level hierarchy. The lower levels still get highlighted.

Completed
Last Updated: 10 Mar 2025 14:41 by ADMIN
Release 2025.1.310 (Preview)
This behavior is observed when referencing 2025.1.211 version of Telerik UI for WinForms controls.
Unplanned
Last Updated: 04 Mar 2025 11:54 by Dickson
Unplanned
Last Updated: 28 Feb 2025 14:52 by ADMIN

Steps to recreate:

  • click on the button on the top row
  • press the down key on the keyboard
  • Press Space key to select new button, the button on the top row is clicked
Completed
Last Updated: 27 Feb 2025 10:38 by ADMIN
Release 2024.3.806 (2024 Q3)
Created by: Ana
Comments: 2
Category: GridView
Type: Feature Request
1
Currently, the GridViewCheckBoxColumn is not synchronized with the selection mechanism of the control. Checking a checkbox will change the value of the bound property. Synchronizing the selection with the checkbox will require custom code. We could expose GridViewSelectionColumn or modify the GridViewCheckBoxColumn to support this.
Completed
Last Updated: 12 Feb 2025 12:42 by ADMIN
Release 2025.1.211 (2025 Q1)
Created by: Alessandro
Comments: 0
Category: GridView
Type: Feature Request
2

With releasing .NET 6, there are TimeOnly and DateOnly types which would be more appropriate for managing such values:

https://devblogs.microsoft.com/dotnet/date-time-and-time-zone-enhancements-in-net-6/

It would be good to add support for these types in GridViewDateTimeView.

Currently, the following code gives an exception when entering edit mode: 

        public RadForm1()
        {
            InitializeComponent();
            DataTable dt = new DataTable();
            dt.Columns.Add("DateOnly", typeof(DateOnly));
            dt.Rows.Add(new DateOnly(2022,3,3));

            this.radGridView1.AutoGenerateColumns = false;
            GridViewDateTimeColumn dateColumn = new GridViewDateTimeColumn();
            dateColumn.FieldName = "DateOnly";
            this.radGridView1.Columns.Add(dateColumn);
            this.radGridView1.DataSource = dt;
            this.radGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
        }

 

 

Workaround: you can use the following custom TypeConverter

        public RadForm1()
        {
            InitializeComponent();
            DataTable dt = new DataTable();
            dt.Columns.Add("DateOnly", typeof(DateOnly));
            dt.Rows.Add(new DateOnly(2022,3,3));

            this.radGridView1.AutoGenerateColumns = false;
            GridViewDateTimeColumn dateColumn = new GridViewDateTimeColumn();
            dateColumn.DataType = typeof(DateTime);
            dateColumn.FieldName = "DateOnly";
            dateColumn.Format = DateTimePickerFormat.Custom;
            dateColumn.CustomFormat = "dd/MM/yyyy";
            dateColumn.FormatString = "{0:dd/MM/yyyy}";
            dateColumn.DataTypeConverter = new DateOnlyConverter();
            this.radGridView1.Columns.Add(dateColumn);
            this.radGridView1.DataSource = dt;
            this.radGridView1.AutoSizeColumnsMode = GridViewAutoSizeColumnsMode.Fill;
        }


        public class DateOnlyConverter : TypeConverter
        {
            public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType)
            { 
                return destinationType == typeof(DateTime);
            }
            public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType)
            { 
                if (value is DateOnly && destinationType == typeof(DateTime))
                {
                    DateOnly date = (DateOnly)value;
                    return new DateTime(date.Year, date.Month, date.Day);
                }
                
                return base.ConvertTo(context, culture, value, destinationType);
            }
            public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType)
            { 
                return sourceType == typeof(DateTime) ;
            }
            public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value)
            { 
                if (value is DateTime)
                {
                    DateTime date = (DateTime)value;
                    return new DateOnly(date.Year, date.Month, date.Day);
                }
                
                return base.ConvertFrom(context, culture, value);
            }
        }

 

    
Completed
Last Updated: 12 Feb 2025 12:41 by ADMIN
Release 2025.1.211 (2025 Q1)
Completed
Last Updated: 12 Feb 2025 12:41 by ADMIN
Release 2025.1.211 (2025 Q1)
The CellSpacing property value is not taken into account. This property has different value in different themes.
Completed
Last Updated: 12 Feb 2025 12:41 by ADMIN
Release 2025.1.211 (2025 Q1)
Completed
Last Updated: 12 Feb 2025 12:41 by ADMIN
Release 2025.1.211 (2025 Q1)

System.ArgumentException: 'An item with the same key has already been added.' when the data source contains DateTime with the same hour, minute, and seconds part (only milliseconds are different):

 

Completed
Last Updated: 12 Feb 2025 12:41 by ADMIN
Release 2025.1.211 (2025 Q1)
EndEdit() method is not called of IEditableObject if an exception is thrown while setting a null value to the bound property
Completed
Last Updated: 12 Feb 2025 12:40 by ADMIN
Release 2025.1.211 (2025 Q1)
Calling the BestFitColumns() method after setting the DataSource will not resize the columns. The method logic is called before the internal measure of the control is finished. 
Unplanned
Last Updated: 07 Feb 2025 11:02 by ADMIN
In this scenario, we have custom RadListFilterPopup. There could be a scenario in which we don't need the default menu items( input textbox, list of distinct values, buttons). If we override the CreateListFilterMenuItems() method and don't call the base code, NullReferenceException will be thrown in the Dispose() method.
Unplanned
Last Updated: 30 Jan 2025 12:57 by ADMIN

In this case, the RadGridView AutoSizeRows and ColumnGroupViewDefinition are enabled. The rows will have different heights depending on the cell content. When exporting the RadGridView to PDF, the rows will have equal size and won't respect the current size in the view. Thus longer text in a cell will be cut off. 

The same behavior is observed when exporting to PDF or XLSX. In addition, this is also observed when printing the RadGridView.

Completed
Last Updated: 27 Nov 2024 14:43 by ADMIN
Release 2024.4.1127 (Preview)
1 2 3 4 5 6