In Development
Last Updated: 25 Jul 2024 14:47 by ADMIN
Scheduled for 2024 Q3 (August)
In this particular case, we have RadSyntaxEditor control and MS Button. The MS Button have mnemonic text: "&OK". When the RadSyntexEditor control editor is focused and we press the O button, the Click event of the MS Button is triggered. This way we can't press the O key while RadSyntaxEditor control is focused.
In Development
Last Updated: 25 Jul 2024 14:47 by ADMIN
Scheduled for 2024 Q3 (August)
The tooltip text of the font and font size DropDownListElements is not localized.
In Development
Last Updated: 25 Jul 2024 14:46 by ADMIN
Scheduled for 2024 Q3 (August)
In this particular case, the RadScheduler is integrated with the RadGanttView. When the controls are loading there is a moment when the RadGanttView control is not fully loaded and its children elements are measured. In that case, DivideByZero exception will be thrown as the Children.Count of the RadGanttView is used in the size calculations. 
In Development
Last Updated: 25 Jul 2024 14:46 by ADMIN
Scheduled for 2024 Q3 (August)
The ToolStrip inside the AutoHidePopup is not disposed
In Development
Last Updated: 25 Jul 2024 11:37 by ADMIN
Scheduled for 2024 Q3 (August)

The selected date is 2024 Feb 29. A custom date format is applied to the control:

this.radDateTimePicker1.Format = DateTimePickerFormat.Custom;
this.radDateTimePicker1.CustomFormat = "yyyy";

When trying to change the date, an ArgumentOutOfRangeException exception is thrown.

 

 

 

In Development
Last Updated: 25 Jul 2024 11:23 by ADMIN
Scheduled for 2024 Q3 (August)

There is a small grey row around the titlebar, above the text. Also, two gray pixels above the title bar. See picture:

In Development
Last Updated: 25 Jul 2024 10:12 by ADMIN
Scheduled for 2024 Q3 (August)
In this particular case, the connections are added runtime which triggers the exception when the TipOverTree is routing is used.
In Development
Last Updated: 25 Jul 2024 08:27 by ADMIN
Scheduled for 2024 Q3 (August)
Please refer to the attached gif file.

Workaround: close manually the drop down list when the auto-complete popup is shown:

    this.radDropDownList1.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
    this.radDropDownList1.DropDownListElement.AutoCompleteSuggest.DropDownList.PopupOpened+=DropDownList_PopupOpened;

private void DropDownList_PopupOpened(object sender, EventArgs e)
{
    this.radDropDownList1.CloseDropDown();
}
In Development
Last Updated: 04 Jul 2024 10:18 by ADMIN
Scheduled for 2024 Q3 (August)
Created by: Nadya
Comments: 0
Category: UI for WinForms
Type: Feature Request
1
Similar to VisualStudio2022Light theme blending. Provide an easy way to change the palette for the Windows 11 themes. 
In Development
Last Updated: 03 Jul 2024 13:43 by ADMIN
Scheduled for 2024 Q3 (August)

Add a RadFilterView and a RadGridView. Associate the two controls and add programmatically FilterDescriptors to the RadFilterView control. The UI doesn't show any filtering applied. 

        Me.RadFilterView1.FilterViewElement.LoadCategoriesAsync = False
        Me.RadGridView1.DataSource = Me.ProductsBindingSource
        Me.RadGridView1.EnableFiltering = True
        Me.RadGridView1.ShowFilteringRow = False


        AddHandler Me.RadFilterView1.FilterChanged, AddressOf Me.RadFilterView1_FilterChanged
        AddHandler Me.RadFilterView1.FilterViewElement.CategoryCreating, AddressOf Me.FilterViewElement_CategoryCreating
        AddHandler Me.RadFilterView1.FilterViewElement.CategoryCreated, AddressOf Me.FilterViewElement_CategoryCreated

        Me.RadFilterView1.AssociatedControl = Me.RadGridView1

       
        Dim filter As New FilterDescriptor With {
            .PropertyName = "ProductID",
            .Operator = FilterOperator.IsLessThanOrEqualTo,
            .Value = 5,
            .IsFilterEditor = True
        }

        Dim filter2 As New FilterDescriptor With {
            .PropertyName = "CategoryID",
            .Operator = FilterOperator.IsLessThanOrEqualTo,
            .Value = 4,
            .IsFilterEditor = True
        }
        Me.RadFilterView1.FilterDescriptors.AddRange(filter, filter2)

In Development
Last Updated: 03 Jul 2024 11:26 by ADMIN
Scheduled for 2024 Q3 (August)
ADMIN
Created by: Hristo
Comments: 0
Category: Spreadsheet
Type: Feature Request
2

			
In Development
Last Updated: 03 Jul 2024 10:16 by ADMIN
Scheduled for 2024 Q3 (August)
In Development
Last Updated: 02 Jul 2024 15:06 by ADMIN
Scheduled for 2024 Q3 (August)

The annotation line is supposed to be at 05 point but instead it is between 05 and 06.

In Development
Last Updated: 02 Jul 2024 14:55 by ADMIN
Scheduled for 2024 Q3 (August)
Created by: Bernadette
Comments: 1
Category: UI for WinForms
Type: Bug Report
0
************** Exception Text **************
System.NullReferenceException: Object reference not set to an instance of an object.
   at Telerik.WinControls.UI.RadPrintPreviewControl.OnPaint(PaintEventArgs pevent)
   at System.Windows.Forms.Control.PaintWithErrorHandling(PaintEventArgs e, Int16 layer)
   at System.Windows.Forms.Control.WmPaint(Message& m)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(HWND hWnd, MessageId msg, WPARAM wparam, LPARAM lparam)
In Development
Last Updated: 24 Jun 2024 14:35 by ADMIN
Scheduled for 2024 Q3 (August)
The issue can be observed if you scroll the document by dragging the scrollbar thumb.
In Development
Last Updated: 10 Jun 2024 17:38 by ADMIN
Scheduled for 2024 Q3 (August)