Unplanned
Last Updated: 26 Jan 2026 10:54 by ADMIN
Created by: Gemma
Comments: 3
Category: UI for WinForms
Type: Bug Report
2

I am working with the RadListView and noticed that its right and bottom border gets clipped at some (not all) width/heights and some scale factors (most notably 150% and 175%). This problem does not occur with the basic System.Windows.Forms.ListView.

Here is the code that I have wrote to replicate this problem with both the WinForms list view and the RadListView. 

      private void InitializeComponent()
      {
              this.listView1 = new System.Windows.Forms.ListView();
              this.radListView1 = new Telerik.WinControls.UI.RadListView();
              ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
              this.SuspendLayout();

              this.listView1.HideSelection = false;
              this.listView1.Location = new System.Drawing.Point(155, 10);
              this.listView1.Name = "listView1";
              this.listView1.Size = new System.Drawing.Size(135, 175);

              this.radListView1.Location = new System.Drawing.Point(5, 10);
              this.radListView1.Name = "radListView1";
              this.radListView1.Size = new System.Drawing.Size(135, 175);
              this.radListView1.UseCompatibleTextRendering = true;

              this.Controls.Add(this.radListView1);
this.Controls.Add(this.listView1);

              this.Name = "RadForm1";
              this.Text = "RadForm1";
              ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
              this.ResumeLayout(false);
      }

Here is a screenshot of the dialog when the scale factor is at 100% (left is the RadListView component):

and here is a screenshot of when my display is scaled at 150% (left is the RadListView component):


To replicate: run the project attached, both at 100% scaling and 150% scaling. 

Thanks!

Unplanned
Last Updated: 23 Jan 2026 10:31 by ADMIN
In this particular case, we have 3 RadSpinEditor controls. Each control NullableValue property is bound to a custom property. We have subscribed to the NullableValueChanged on each control. Changing the value of one RadSpinEditor control will trigger the NullableValueChanged on each one.
Unplanned
Last Updated: 22 Jan 2026 13:53 by Jarne
Created by: Matthias
Comments: 5
Category: Spreadsheet
Type: Bug Report
9

Currently, it takes around 5 seconds to load the RadSpreadsheetRibbonBar.

Please run the project and compare the load time when clicking the two buttons in the main form.

Unplanned
Last Updated: 22 Jan 2026 08:51 by ADMIN
Completed
Last Updated: 21 Jan 2026 10:00 by ADMIN
Release 2025.4.1321
Created by: Ashraf
Comments: 1
Category: MaskedEditBox
Type: Bug Report
0
 
Completed
Last Updated: 21 Jan 2026 10:00 by ADMIN
Release 2025.4.1321
NullReferenceException is called during EndUpdate() under heavy Garbage Collector activity
Completed
Last Updated: 21 Jan 2026 10:00 by ADMIN
Release 2025.4.1321

There is a big problem with Telerik controls when using national resource files.  Switching from one language to another and again sometimes destroys the user interface. It especially concerns RadCheckBox control. Text, tooltip and probably other properties from one control appear in other control etc. I think it can be a general problem because I also noticed that sometimes Image from one RadButton control appears in other button.

I prepared a set of images which show how it happended in my case. Switching from Default language to Polish language and again and then adding and removing new RadCheckBox completly destroyed user interface in my sample UserControl. This new RadCheckbox was created as a copy of existing RadCheckBox what may be a clue.

I also attached VS2019 project with my sample UserControl.

 

Best regards,

Andrzej

Completed
Last Updated: 21 Jan 2026 10:00 by ADMIN
Release 2025.4.1321
Created by: Martin
Comments: 8
Category: VirtualGrid
Type: Bug Report
4

Repro-steps:

  1. Use the code beneath.
  2. Run this form.
  3. 20 records are shown, the "AddNewRow" is shown.
  4. Select all records.
  5. Press <delete>
  6. 0 records are shown (as expected), the "AddNewRow" is invisible (unexpected).
  7. Close the program.
  8. Modify LoadTable(true) to LoadTable(false). Records will not be created..
  9. Run this form.
  10. 0 records are shown (as expected), the "AddNewRow" is invisible (unexpected).

Expected behavior:

  • Even when the dataTable or view has no rows, we should still be able to add new rows.

Observed behavior:

  • When datatable/view is empty, no new records are allowed to enter.

Please observe that Grid.UserAddedRow is not handled, but since we cannot even see the AddNewRow, it is not required for this bug.


	public partial class TestForm: Form
	{
		private readonly DataView _view;

		public TestForm()
		{
			InitializeComponent();

			_view = new DataView(LoadTable(true));
			_grid.ColumnCount = _view.Table.Columns.Count;
			_grid.RowCount = _view.Count;
			_grid.AllowAddNewRow = true;
			_grid.SelectionMode = VirtualGridSelectionMode.FullRowSelect;
		}

		static private DataTable LoadTable(bool fill)
		{
			var table = new DataTable();
			table.Columns.Add("Number", typeof(int));
			
			if (fill)
				for(int i = 0; i < 20; i++)
					table.Rows.Add(i);
			
			return table;
		}


		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this._grid = new Telerik.WinControls.UI.RadVirtualGrid();
			((System.ComponentModel.ISupportInitialize)(this._grid)).BeginInit();
			this.SuspendLayout();
			// 
			// _grid
			// 
			this._grid.Dock = System.Windows.Forms.DockStyle.Fill;
			this._grid.Location = new System.Drawing.Point(0, 0);
			this._grid.MultiSelect = true;
			this._grid.Name = "_grid";
			this._grid.SelectionMode = Telerik.WinControls.UI.VirtualGridSelectionMode.FullRowSelect;
			this._grid.Size = new System.Drawing.Size(800, 450);
			this._grid.TabIndex = 0;
			this._grid.CellValueNeeded += new Telerik.WinControls.UI.VirtualGridCellValueNeededEventHandler(this._grid_CellValueNeeded);
			this._grid.UserDeletedRow += new Telerik.WinControls.UI.VirtualGridRowsEventHandler(this._grid_UserDeletedRow);
			// 
			// TestForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(800, 450);
			this.Controls.Add(this._grid);
			this.Name = "TestForm";
			this.Text = "TestForm";
			((System.ComponentModel.ISupportInitialize)(this._grid)).EndInit();
			this.ResumeLayout(false);

		}

		#endregion

		private Telerik.WinControls.UI.RadVirtualGrid _grid;

		private void _grid_CellValueNeeded(object sender, Telerik.WinControls.UI.VirtualGridCellValueNeededEventArgs e)
		{
			if (e.ColumnIndex < 0)
				return;

			if (e.RowIndex < 0)
			{
				e.FieldName = _view.Table.Columns[e.ColumnIndex].ColumnName;
				if (e.RowIndex == RadVirtualGrid.HeaderRowIndex)
					e.Value = e.FieldName;
			}
			else if (e.RowIndex < _view.Count)
			{
				e.Value = _view[e.RowIndex][e.ColumnIndex];
			}
		}

		private void _grid_UserDeletedRow(object sender, Telerik.WinControls.UI.VirtualGridRowsEventArgs e)
		{
			var rowIndexes = e.RowIndices.Distinct().OrderByDescending(i => i).ToList(); // Off topic: I have seen duplicate row indexes in this row collection. And unsorted. Is that by design?
			if (rowIndexes.Count == _view.Count)
			{
				_view.Table.Rows.Clear();
			}
			else
			{
				foreach(var index in rowIndexes)
					_view[index].Delete();
			}

			_grid.RowCount = _view.Count;
		}
	}

Completed
Last Updated: 21 Jan 2026 10:00 by ADMIN
Release 2025.4.1321

We are experiencing a significant issue with the latest version of Telerik components for WinForms.
The RadTreeView control is affected.
The tree view is populated with nodes.
When nodes are expanded and then scrolled, the +/- indicators are no longer displayed correctly and the elements are also no longer displayed correctly. It even goes so far that no elements are displayed at all (only the root element always seems to remain).

It happens only on environments that we access by remote desktop connection. Never on the local environment till now.

Completed
Last Updated: 21 Jan 2026 10:00 by ADMIN
Release 2025.4.1321

In the following case, we have a document with hyperlinks that scroll to a specific location in the document. Clicking on the links does not scroll to the specified location.

Unplanned
Last Updated: 20 Jan 2026 11:57 by ADMIN
In this case, the SelectedValue property of the RadMultiColumnComboBox control is bound to a custom property. When we select an item from the dropdown, the application hangs. 
Unplanned
Last Updated: 16 Jan 2026 13:21 by ADMIN
Unplanned
Last Updated: 13 Jan 2026 13:15 by ADMIN
The preview version assembly archive contains AI assemblies related to the RadPdfViewer control that need to be excluded and not distributed.
Unplanned
Last Updated: 13 Jan 2026 12:57 by Dane

It used to work until Q3 2024:

After that, the import operation is successful. However, the image rendering of the SVG when assigning the Workbook results in an error message:  System.ArgumentException: 'Parameter is not valid.'

        public Form1()
        {
            InitializeComponent();
            using (var fileStream = File.OpenRead("example.xlsx"))
            {
                Workbook wb = new XlsxFormatProvider().Import(fileStream);
                radSpreadsheet.Workbook = wb;
            }
        }

Declined
Last Updated: 07 Jan 2026 14:52 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 1
Category: Editors
Type: Bug Report
1
To reproduce:
public Form1()
{
    InitializeComponent();

    this.radTextBox1.Text = "abcd";
    this.radTextBox2.Text = "abcd";
    this.radTextBoxControl1.Text = "abcd";
    this.radTextBoxControl2.Text = "abcd";

    this.radTextBox2.Multiline = true;
    this.radTextBoxControl2.Multiline = true;

    this.textBox1.Text= "abcd";
    this.textBox2.Text= "abcd";
    this.textBox2.Multiline = true;
}

Workaround: set the Multiline property to true in the Form.Load event.

Second workaround: this.radTextBox2.TextBoxElement.TextBoxItem.Margin = new Padding(-2, 0, 0, 0);
Declined
Last Updated: 07 Jan 2026 12:51 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 1
Category: Editors
Type: Bug Report
2
To reproduce:
this.radTextBoxControl1.Text = "dog and blue glue";
this.radTextBoxControl1.Size = new Size(50, 65);
this.radTextBoxControl1.Multiline = true;

Workaround:
use RadTextBox.
Declined
Last Updated: 06 Jan 2026 15:04 by ADMIN
Declined
Last Updated: 06 Jan 2026 12:46 by ADMIN
1. Add RadDropDowlList in form. 
2. Open the items collection and add some items. 
3. After that set the Selected property of one item to true and click OK. 
4. You will see that the change is not saved.

Workaround: 
Set the selected item at run time.
Unplanned
Last Updated: 19 Dec 2025 14:17 by ADMIN
Table rows resize incorrectly when the table spans multiple pages
Duplicated
Last Updated: 18 Dec 2025 13:11 by ADMIN
Created by: Suresh
Comments: 1
Category: UI for WinForms
Type: Bug Report
0

team,

 

we did not get any help from public forum,

already we commited our stack holders will resolve in 2026 Q1, so please close ASAP.

 

RadControl: Incorrect Font scaling after DPI switch runtime

1 2 3 4 5 6