Declined
Last Updated: 16 Feb 2024 20:28 by ADMIN
The filter UI controls in ASP.NET Core and MVC are really nice, see filter. Can you include the same controls and UI be included in Winforms and WPF?
Completed
Last Updated: 20 Jun 2023 04:56 by Jay
Release R2 2020 (LIB 2020.1.323)

Paste some text inside RadRichTextEditor. If the text has more rows than the currently visible area you will see that the control does not scroll down to the caret position.

Workaround:

private void RadRichTextEditor1_CommandExecuted(object sender, CommandExecutedEventArgs e)
{
    if (e.Command is PasteCommand)
    {             
        Application.DoEvents();

        bool cursorAtDocEnd = this.radRichTextEditor1.Document.CaretPosition.IsPositionAtDocumentEnd;
        if (cursorAtDocEnd)
        {
            MoveCaretCommand command = new MoveCaretCommand(this.radRichTextEditor1.RichTextBoxElement);
            command.Execute(MoveCaretDirections.Down);
        }
    }
}

 

Unplanned
Last Updated: 27 Feb 2020 08:56 by ADMIN
Created by: Micronova
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Currently, RadFileDialogs uses a RadAutoCompleteBox for specifying the folder/file name. It would be nice to have a drop down with recent files:

Unplanned
Last Updated: 26 Feb 2020 10:41 by ADMIN
When RadOpenFileDialog is opened, open an Explorer window , select a file, copy it and paste in the folder displayed from the RadOpenFileDialog. If the same operation is performed using a standard WinForms OpenFile dialog the pasted file is selected after the paste operation.
Completed
Last Updated: 23 Apr 2020 16:12 by ADMIN
Release R2 2020 (LIB 2020.1.423)

Populate a RadGridView with data, move the form to a monitor with greater than 100% DPI scaling. Save the layout and then load it again. You will notice that the columns' width is increased each time.

Workaround:

    Sub New()
        RadControl.EnableDpiScaling = False
        InitializeComponent()
    End Sub
Unplanned
Last Updated: 20 Feb 2020 12:29 by ADMIN
Created by: Dan
Comments: 0
Category: UI for WinForms
Type: Feature Request
5
Introduce a Converter tool standalone application which does not depend on a specific Visual Studio version.
Completed
Last Updated: 10 Jun 2020 13:40 by ADMIN
Release R2 2020 SP1
Created by: Frank
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Default:

Desired:

Workaround: handle the ExplorerControl.MainNavigationTreeView.NodeFormatting event and replace the node's text with the FileBrowserTreeNode.Label: 

    Sub New()

        InitializeComponent() 

        AddHandler Me.RadOpenFileDialog1.OpenFileDialogForm.ExplorerControl.MainNavigationTreeView.NodeFormatting, AddressOf MainNavigationTreeView_NodeFormatting
        Me.RadOpenFileDialog1.ShowDialog() 
    End Sub

    Private Sub MainNavigationTreeView_NodeFormatting(sender As Object, e As Telerik.WinControls.UI.TreeNodeFormattingEventArgs)
        If e.Node.Text = "K:" Then
            Dim f As FileBrowserTreeNode = TryCast(e.Node, FileBrowserTreeNode)
            If f IsNot Nothing Then
                e.Node.Text = f.DataItem.Label
            End If 
        End If 
    End Sub
Completed
Last Updated: 09 Mar 2020 14:56 by ADMIN
Release R2 2020 (LIB 2020.1.316)
Unplanned
Last Updated: 17 Feb 2020 08:32 by ADMIN
Import hover style for a link in HTML:

a:hover {
            color: #3ca9f6
}
Completed
Last Updated: 09 Mar 2020 14:30 by ADMIN
Release R2 2020 (LIB 2020.1.316)

 public RadForm1() 
        {
            RadMapElement.VisualElementFactory = new MyMapVisualElementFactory();
            InitializeComponent();
        } 

 

public class MyMapVisualElementFactory : MapVisualElementFactory
    {
        public override MapCluster CreateCluster()
        {
            System.Diagnostics.Debug.WriteLine("FIRE!");
            return new MapCluster();
        }
    }
Completed
Last Updated: 09 Mar 2020 14:29 by ADMIN
Release R2 2020 (LIB 2020.1.316)

Please refer to the attached sample project and follow the steps illustrated in the provided gif file.

Workaround:

        public RadForm1()
        {
            InitializeComponent();

            this.radPageView1.SelectedPageChanged += radPageView1_SelectedPageChanged;
        }

        private void radPageView1_SelectedPageChanged(object sender, EventArgs e)
        {
            if (this.radPageView1.SelectedPage != this.radPageViewPage1)
            {
                SelectionMiniToolBar selectionMiniToolBar = this.radRichTextEditor1.RichTextBoxElement.SelectionMiniToolBar as SelectionMiniToolBar;
                if (selectionMiniToolBar != null)
                {
                    selectionMiniToolBar.Hide();
                }
            }
        }

Unplanned
Last Updated: 17 Feb 2020 13:52 by ADMIN
When a developer set the RadForm.ThemeName property and then drag any controls onto the form, they will get automatically this theme applied to the control's ThemeName property. However, if you already have some controls on the form with ThemeName = "X" and you change RadForm.ThemeName to "Y", all controls' ThemeName should be changed to the new RadForm.ThemeName as well.
Completed
Last Updated: 11 May 2021 11:13 by ADMIN
Release R2 2021
Created by: atfats
Comments: 3
Category: UI for WinForms
Type: Feature Request
9

hi...

A Callout Control is in your roadmap for winforms please ?

thx in advance...

 

regards,

Unplanned
Last Updated: 06 Feb 2020 14:01 by ADMIN
Please open the sample document in the Demo application and start scrolling. The attached gif file illustrates the obtained behavior. It is necessary to wait 2-3 seconds to scroll to the correct document's position.
Unplanned
Last Updated: 06 Feb 2020 13:20 by ADMIN
OverflowException is thrown while importing document using Helvetica font with custom encoding.
Unplanned
Last Updated: 06 Feb 2020 12:13 by ADMIN
We want to have full access to the 1920x1080 cameras at max FPS in the preview stream. But when we record, we'd like to record the video at smaller resolution (720p) and a lower FPS, ~30 or so we could use something like FFMPEG to resize post recording, but we'd rather not have to do that extra processing.
Unplanned
Last Updated: 17 Apr 2024 14:39 by ADMIN

Apply the Office2010Silver theme to your application since it has a good border indication for the focus in RadSpinEditor. 

Please run the attached project and click in the RadSpinEditor that is not in the RadPopupContainer. You will notice that when you move the mouse away that the border is highlighted in yellow showing that the control has complete focus. Now, click in the RadSpinEditor that is in the RadPopupContainer and move your mouse away. You will notice that the border is not highlighted in yellow indicating that it does not have focus. You can also see that it does not fire the GotFocus event. If you click closer to the border out of the "TextBox" area, the control border will stay yellow showing complete focus and fire off the GotFocus event. However, in this case, the caret is not displayed.

Workaround: handle the GotFocus/LostFocus events for the SpinElement.TextBoxItem and apply the desired border for indicating the focus.
Unplanned
Last Updated: 31 Jan 2020 07:29 by ADMIN
The document styles are not respected because of wrongly imported custom style name after copy-paste from MS Word and exported to HTML.

Workaround: avoid using styles with braces in their name.
Completed
Last Updated: 06 Mar 2020 12:51 by ADMIN
Release R1 2020 SP1
When copy a modified Heading from Word document and paste it into a RichTextEditor the modified styles are not correctly imported.
Unplanned
Last Updated: 22 Jan 2020 13:20 by ADMIN
Created by: Desislava
Comments: 0
Category: UI for WinForms
Type: Feature Request
0

Similar to RadMulticolumnComboBox but it should allow multiple items to be checked. Please refer to RadDropDownList and RadCheckedDropDownList. 

Workaround: 

https://docs.telerik.com/devtools/winforms/controls/multicolumncombobox/how-to/multiple-selection