Unplanned
Last Updated: 20 Oct 2025 07:44 by ADMIN
Created by: Fabian
Comments: 1
Category: Chat
Type: Feature Request
0
Expose HyperlingClicked event.
In Development
Last Updated: 17 Oct 2025 15:03 by ADMIN
Scheduled for 2025 Q4 (November)

Currently, colors with an alpha channel defined with the 'rgba' function are not respected, for example, the following:

<span style="background-color: rgba(0, 0, 0, 0.5);">Some text</span>

It is imported as black color; semi-transparent colors are exported without the alpha channel.

In Development
Last Updated: 17 Oct 2025 12:20 by ADMIN
Scheduled for 2025 Q4 (November)
Currently searching is only possible through PdfViewerNavigator.
In Development
Last Updated: 17 Oct 2025 07:47 by ADMIN
Scheduled for 2025 Q4 (November)

When the RadSpreadsheet is docked and the TelerikMetroTouch theme is applied, the Vertical ScrollBar is not fully visible.

In Development
Last Updated: 17 Oct 2025 07:46 by ADMIN
Scheduled for 2025 Q4 (November)
In Development
Last Updated: 17 Oct 2025 07:28 by ADMIN
Scheduled for 2025 Q4 (November)
In this scenario, the drag-drop a RadButton into the form designer. Then we set the Windows 11 Dark theme to be the default theme of the application. If we don't change the size of the button and run the application, the button is not visible. 
Unplanned
Last Updated: 13 Oct 2025 13:17 by ADMIN
Created by: Suresh
Comments: 1
Category: FileDialogs
Type: Bug Report
1
In the current scenario, we are using RadOpenFileDialog. When trying to select 700 items in the UI using Ctrl + A, the control freeze due to the large number of files.
Unplanned
Last Updated: 13 Oct 2025 12:23 by ADMIN
Created by: Nadya
Comments: 0
Category: TaskBoard
Type: Feature Request
0

Provide an option to edit the cards. 

Currently, we have a custom solution for card editing through a dialog: Task Card Edit Dialog - Telerik UI for WinForms

Unplanned
Last Updated: 07 Oct 2025 11:13 by ADMIN

This is observed when moving the Form to monitors with different DPI settings:

 

Completed
Last Updated: 06 Oct 2025 13:37 by ADMIN
ADMIN
Created by: Stefan
Comments: 3
Category: RichTextEditor
Type: Feature Request
7
ADD. RadRichTextBox - add support for line numbering
Unplanned
Last Updated: 03 Oct 2025 13:41 by ADMIN
Created by: Developer at
Comments: 6
Category: ColorDialog
Type: Bug Report
3

Hi Guys,

 

ColorDialog on higher dpi has some small problems.

1. Size of dialog is larger so there is large gap in right and bottom part.

2. Selected radio button black circle is not in center of larger circle.

 

Best regards

Rene

Unplanned
Last Updated: 02 Oct 2025 13:01 by vance chiang

When using DFKai-SB , the glyphs are not rendered like in Adobe or the browser:

Adobe:

PdfViewer:

 

Unplanned
Last Updated: 30 Sep 2025 12:51 by ADMIN
In a hierarchy grid, when AutoGenerateColumns= true, this event triggers only for MasterTemplate.
Unplanned
Last Updated: 23 Sep 2025 12:19 by ADMIN
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;
		}
	}

Unplanned
Last Updated: 19 Sep 2025 10:08 by ADMIN
Created by: Nathan
Comments: 1
Category: Dock
Type: Feature Request
2
Add UI Automation support.
Unplanned
Last Updated: 18 Sep 2025 11:59 by ADMIN
Created by: Rafał
Comments: 1
Category: GanttView
Type: Feature Request
0

Currently, there is LinkChanged event.

It would be useful if there is also LinkChanged event that allows to be canceled upon some condition.

Completed
Last Updated: 17 Sep 2025 14:26 by ADMIN
Release 2025.3.917 (Preview)
When a CommandColumn cell is focused and we try to focus an external control, the RadGridView can't lose focus. The internal code will force the control to focus the CommandColumn cell again.
Completed
Last Updated: 17 Sep 2025 14:23 by ADMIN
Release 2025.3.917 (Preview)
I have moved the mouse away, the pointer is not over an element of the NavigationView, but the SubPages remain visible. I would like it to be collapsed, and expand again when I move the mouse over the Page (the orange area).
Unplanned
Last Updated: 15 Sep 2025 13:48 by ADMIN
Created by: Steinar
Comments: 1
Category: PdfViewer
Type: Feature Request
1
 
Planned
Last Updated: 11 Sep 2025 15:01 by ADMIN
Created by: Austin
Comments: 1
Category: TreeView
Type: Feature Request
2
Implement UI Automation support
1 2 3 4 5 6