Completed
Last Updated: 29 Nov 2021 11:16 by ADMIN
Release R1 2022
Created by: Al
Comments: 1
Category: UI for WinForms
Type: Feature Request
1
Request read only property on the RadMultiColumnComboBox control
Completed
Last Updated: 04 Jan 2022 13:32 by ADMIN
Release R1 2022

To reproduce:

- .NET Core version: 3.1

- Visual Studio 2022: Version 17.0.0 Preview 7.0

 - Telerik UI for WinForms version: 2021.3.1019-hotfix

1. Create a new Excel-Inspared template project.

2. Select the Review tab and the Properties section try to open the Items collection.

The attached Error.gif illustrates the steps.

Workaround: use the Smart tag (see SmartTag.gif)

Unplanned
Last Updated: 21 Oct 2021 06:39 by ADMIN
Created by: Dave
Comments: 4
Category: UI for WinForms
Type: Feature Request
0
This aggregate function should count all the distinct values.
Completed
Last Updated: 19 Oct 2021 15:41 by ADMIN
Release R3 2021 SP1
1. Create a new windows forms .net 5.0 project

2. Add a richtexteditor control to the form

3. Set IsSpellCheckingEnabled = true

4. Run the project, type invalid word in text box.  The text is not spell-checked.
Completed
Last Updated: 20 Oct 2021 10:32 by ADMIN
Release R3 2021 SP1
To reproduce:
Add several RadTreeNodes to RadTreeView and then call the Clear method of the control.
Completed
Last Updated: 29 Apr 2022 12:45 by ADMIN
Release R2 2022
Completed
Last Updated: 09 Nov 2021 09:01 by ADMIN
Release R3 2021 SP1

The snap layouts window can be opened by using the Win+Z keyboard combination, but when the mouse is over the Maximize button of RadForm, the window is not shown.
MSDN information is available here: https://docs.microsoft.com/en-us/windows/apps/desktop/modernize/apply-snap-layout-menu

Following the guides from MSDN, we need to override the WndProc method of the form, listen to the WM_NCHITTEST message, and return HTMAXBUTTON result when the mouse is over the maximize button.


private const int HTMAXBUTTON = 9;
protected override void WndProc(ref Message m)
{
    if (m.Msg == NativeMethods.WM_NCHITTEST)
    {
        // Get the hit test location from message parameters
        Point location = this.ParseIntPtr(m.LParam);
        location = this.GetMappedWindowPoint(location);

        // Get the hit tested element and check if it is the Maximize button
        RadElement element = this.ElementTree.GetElementAtPoint(location);
        if (element == this.FormElement.TitleBar.MaximizeButton)
        {
            m.Result = new IntPtr(HTMAXBUTTON);
            return;
        }
    }

    base.WndProc(ref m);
}

private Point ParseIntPtr(IntPtr param)
{
    if (IntPtr.Size == 4) //x86
    {
        return new Point(param.ToInt32());
    }
    else //x64
    {
        long intParam = param.ToInt64();
        short x = (short)intParam;
        short y = (short)(intParam >> 16);
        return new Point(x, y);
    }
}

protected virtual Point GetMappedWindowPoint(Point screenPoint)
{
    NativeMethods.POINT inputPoint = new NativeMethods.POINT();
    inputPoint.x = screenPoint.X;
    inputPoint.y = screenPoint.Y;

    if (this.IsHandleCreated)
    {
        NativeMethods.MapWindowPoints(new HandleRef(this, IntPtr.Zero), new HandleRef(this, this.Handle), inputPoint, 1);
    }

    return new Point(
    inputPoint.x + this.FormBehavior.ClientMargin.Left,
    inputPoint.y + this.FormBehavior.ClientMargin.Top);
}

              
Completed
Last Updated: 04 Nov 2021 11:50 by ADMIN
Release R3 2021 SP1
 The WorkbookContentChanged event is invoked right after importing a document. 
Completed
Last Updated: 02 Nov 2021 16:20 by ADMIN
Release R3 2021 SP1
Created by: Igo
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

1. Run Telerik Theme Viewer app

2. Set Office2019Dark theme

3. Navigate to "Item Containers" tab

You will see that radTreeView does not display nodes.

 

Workaround:

this.radTreeView1.FullRowSelect = false;

Completed
Last Updated: 23 Sep 2022 13:07 by ADMIN
Release R3 2022

1. Set ThemeResolutionService.AllowAnimations = false;

2. Run the attached project and set a filter via the GridFilterButton popup

3. Click "Clear filter" option in the GridFilterButton popup

 

You will see that the GirdFilterButton visual indication is of an applied filter. However, there is no applied filter.

Completed
Last Updated: 20 Oct 2021 09:37 by ADMIN
Release R3 2021 SP1
Documents with very small container bounds may fail to load.
Completed
Last Updated: 08 Oct 2021 13:12 by ADMIN
Release R3 2021 SP1
  1. Run TelerikExamplesLauncher.exe - GanttView "First Look" example
  2. Scroll and select a task near the bottom, for example: "Send your engagement announcement to newspapers" under "The Guest > 6 Months +"
  3. Use splitter to resize between TextView and GraphicalView

You will see that GraphicalView doesn't move but TextView loses task position and scrolls to the top.

Note that using mouse Scroll refreshes the correct position of TextView on the selected task.

Duplicated
Last Updated: 06 Oct 2021 14:33 by ADMIN
Created by: Fernando
Comments: 0
Category: UI for WinForms
Type: Feature Request
0
The SplitPanels should expose the Modifiers property so that it can be set to Public or Protected. This way it will be possible to work with the panels in forms that are visually inherited in the VS designer.
Completed
Last Updated: 18 Oct 2021 09:56 by ADMIN
Release R3 2021 SP1 (LIB 2021.3.1019)
Created by: Paul
Comments: 2
Category: UI for WinForms
Type: Bug Report
2
On some (but not all!) systems (including my development laptop) an application using RadOpenFileDialog completely hangs (freezes) when e.g. selecting another directory in the RadOpenFileDialog.
Completed
Last Updated: 21 Oct 2021 10:28 by ADMIN
Release R3 2021 SP1
Created by: Frank
Comments: 0
Category: UI for WinForms
Type: Bug Report
0
'Parameter is not valid.' exception is thrown, when loading a file dialog. The exception is thrown, when trying to retrieve icons for the files and folders in the dialog.
Completed
Last Updated: 24 Sep 2021 09:02 by ADMIN
Release R3 2021 SP1
Created by: Jana
Comments: 0
Category: UI for WinForms
Type: Bug Report
2

When we have start position set to center screen:

            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;

RadForm does not calculate the correct location of the form on HDPI devices.

Unplanned
Last Updated: 09 Sep 2021 13:50 by ADMIN

1. Create a Winforms application containing RichTextEditorRibbonBar

2. Add a CodedUI test project

3. Start the application and add a new CodedUITest

4. Drag the Spy from the "UIMap - Coded UI Test Builder" onto a disabled radButtonElement - for example "Delete All" button in the "Review" tab

 

You will see that the Enabled property value is true instead of false.

Declined
Last Updated: 01 Sep 2021 07:21 by ADMIN

I have installed the suite of controls for winforms, but I can't get them to appear in the toolbox. When I use Extension / Telerik / Telerik UI for Winforms / Launch Toolbar configurator it shows me the control options and is supposed to add them to the Toolbox, but they don't appear. If I select the Show All option then all the Telerik control categories appear, but none are enabled. So I did it manually and it remains the same.

This image shows the toolbox after using the Telerik extension Launch toolbox configurator

As you can see, no tab appears with the Telerik controls.

And if I tell it to show me all the tabs, the Telerik controls do appear, but they are not enabled, as can be seen in the following image:

 

Thanks,

 

Juan Carlos

Duplicated
Last Updated: 03 Aug 2021 07:31 by ADMIN
Created by: Iprel
Comments: 0
Category: UI for WinForms
Type: Bug Report
0

Follow the steps:

1. Please enter "0.12345"

2. Using the left arrow navigate after "1" and hit Backspace to delete "1"

3. Enter "6". It would be inserted in the wrong position

Completed
Last Updated: 03 Aug 2021 16:21 by ADMIN
Release R3 2021

Hello support,

 

i use the radBrowseEditor.

 

Here the code:


        private readonly string ActualPath_LiteDB = "";

        public F_ApplicationsSettings()
        {
            InitializeComponent();

            //set up actual paths
            ActualPath_LiteDB = Settings.PathToLogLiteDB;
            radBrowseEditor_db_path.Value = ActualPath_LiteDB;

            this.Text = F_Translations.GetTranslationText("settings");
        }

When i set the DialogType to FolderBrowseDialog the initial directory the its working:

But if i set it the DialogType to RadOpenFolderDialog its not working. Its always showing the Desktop folder: