Completed
Last Updated: 22 Mar 2019 12:59 by ADMIN
Release 2019.1.325 (03/25/2019)
Select file/fodler. Press F2 and rename it. Click Enter. File stays selected but pressing F2 does not enter edit mode again.
Completed
Last Updated: 17 Apr 2019 10:43 by ADMIN

Steps to reproduce

  1. Click somewhere in the document to move the cursor
    • The cursor starts blinking in the exact location is was moved to after you clicked
  2. Move the cursor with the arrow keys on the keyboard
    • The first time the cursor blinks it moves slightly to the right of the position it was moved to by the arrow key

Unfortunately due to the other cursor jumping bug our users are extremely sensitive to anything that makes it appear like the cursor is not in the position they moved it to.

I attached a gif of this happening with the zoom set to 500% so it is easiest to see but it appears to be a problem at any zoom level 100% or higher.

Unplanned
Last Updated: 15 Oct 2019 10:25 by ADMIN
When a document is imported (for example from XAML) and then exported to DOCX or RTF, the fields lose their formatting. The issue is not observed if the document is just created.
Workaround: Change the fields display mode of all fields in headers/footers just before the export:
private void UpdateHeadersFooters(RadDocument document)
{
    foreach (Section section in document.Sections)
    {
        if (section.Headers.Default.Body != null)
        {
            this.UpdateFields(section.Headers.Default.Body);
        }
 
        if (section.Headers.First.Body != null)
        {
            this.UpdateFields(section.Headers.First.Body);
        }
 
        if (section.Headers.Even.Body != null)
        {
            this.UpdateFields(section.Headers.Even.Body);
        }
 
        if (section.Footers.Default.Body != null)
        {
            this.UpdateFields(section.Footers.Default.Body);
        }
 
        if (section.Footers.First.Body != null)
        {
            this.UpdateFields(section.Footers.First.Body);
        }
 
        if (section.Footers.Even.Body != null)
        {
            this.UpdateFields(section.Footers.Even.Body);
        }
    }
}
 
private void UpdateFields(RadDocument radDocument)
{
    RadDocumentEditor editor = new RadDocumentEditor(radDocument);
    editor.ChangeAllFieldsDisplayMode(FieldDisplayMode.Code);
}
Completed
Last Updated: 11 Mar 2019 06:46 by ADMIN
Two tabs are required to navigate between property fields in the following themes:
- Office2013
- VisualStudio2013
- Green
- Office2016(Touch)
- Material
- Fluent
- Crystal
Completed
Last Updated: 14 May 2019 14:01 by ADMIN
Release R2 2019
Created by: Martin Ivanov
Comments: 0
Category: UI for WPF
Type: Feature Request
4
The idea of this feature is to introduce a form, which can host tabs in its title bar (like RadTabControl), just like in Chrome/Edge. This would allow our clients to deliver a modern and flexible layout to their users. 
Completed
Last Updated: 12 Feb 2019 08:03 by ADMIN
When there are parentheses inside the arguments of a function call the expression parser cannot parse the expression e.g. Abs(1 - (2 * 3))
Completed
Last Updated: 25 Mar 2019 07:01 by ADMIN
Release LIB 2019.1.325 (3/25/2019)
Created by: WSB
Comments: 0
Category: UI for WPF
Type: Feature Request
3

Hello Telerik,

I started working with the RadMultiColumnComboBox.
A feature that I miss is opening the combo on focus.

The RadComboBox has OpenDropDownOnFocus and I use it very often.

Thanks in advance

Completed
Last Updated: 11 Feb 2019 13:07 by ADMIN
Setting StyleManager.Theme attached property is not respected by RadDiagramToolBox.
Completed
Last Updated: 25 Dec 2023 09:04 by ADMIN
Release R3 2023
Created by: Martin Ivanov
Comments: 3
Category: UI for WPF
Type: Feature Request
25
The new API should allow you get an SVG file and convert it in a WPF-friendly format.

If there is a control, it should also display the SVG contents.
Completed
Last Updated: 25 Jan 2019 13:30 by ADMIN
When we load an XML file to the diagram using DiagramRibbon the ribbon does not clear the diagram items

Scheduled for:
The fix for this issue will be available with LIB (version 2019.1.128) scheduled for publishing on Monday, 28th January 2019.
Completed
Last Updated: 12 Feb 2019 12:17 by ADMIN
Unplanned
Last Updated: 18 Jan 2019 14:34 by ADMIN
This is similar to AutoCompleteBox. However, you can write text freely and the suggestions popup should appear only when you enter a special character like '@' for example. This behavior is observed in the facebook, slack and ms teams chats. You can mention someone in the chat.
Unplanned
Last Updated: 21 Jan 2019 14:24 by ADMIN
Created by: Usman
Comments: 1
Category: UI for WPF
Type: Bug Report
0
I have downloaded the SDKSampleBrowser application from link but when I open application I am getting error attached in log file.
Completed
Last Updated: 03 Jun 2019 06:26 by ADMIN
Release LIB 2019.2.603 (06/03/2019)
 Scrolling to a not visible column, a ToolTip appears on this column which does not have a ToolTipTemplate set.
Completed
Last Updated: 14 Feb 2019 13:56 by ADMIN
During the XAML export, by default images are serialized to XAML using the Convert.ToBase64String(byte[]) method. 
When the image is big, this causes allocation of a lot of memory (e.g. for 30MB image, the allocated memory for the string is ~300 MB), and when the base memory consumption of the process is high, this can cause OutOfMemoryException. 
Instead, the conversion to base64 format could be done using Convert.ToBase64String(Byte[], Int32, Int32) on smaller chunks, which are immediately written to the text stream and left to be garbage collected.
Completed
Last Updated: 04 Jan 2019 13:42 by ADMIN
An exception is thrown when the ItemsSource of the ItemsSourceProvider is bound to a DataTable and an item is select in the drop-down.

The fix for this issue will be available with our next official version – R1 2019 expected in the middle of January. 
Declined
Last Updated: 29 Jan 2019 09:24 by ADMIN
Created by: David
Comments: 5
Category: UI for WPF
Type: Bug Report
0
I'm using the fluent theme in my app. When I load ColorVariation.Dark, everything is dark except a sub-window. This is a window created by my main window. Its main control is TabControl with most of the tabs items being ListBoxes using data templates. The Listboxes display dark but the window itself is light along with the first tab item which is just a grid with TextBoxes. I don't specify background color on any of these controls so I assumed they would come from the theme. Do I have to do something to pass the info th a sub-window?
Declined
Last Updated: 23 Jan 2019 15:59 by ADMIN
Created by: David
Comments: 2
Category: UI for WPF
Type: Feature Request
1

I would like the fluent theme to support spacing option like it does fonts. The Mail app added a new setting "Folder and message spacing" in which you can pick spacious , medium, or compact. I would like the fluent theme to support something similar.  The fluent theme was defined for "finger" access but we still have desktop apps that want dense information with mouse access.  I would normally just pick a different theme but because of Windows 10, I can't. Windows 10 no longer supports specifying a default font and WPF no longer defaults to the OS font. This means that all my Windows apps must support picking a font. So I'm stuck with the fluent theme. But I don't always want the "spacious" spacing that the theme uses.

Would it be possible to support picking "spacious", "medium" or "compact" spacing?

Completed
Last Updated: 15 Sep 2021 13:08 by ADMIN
Non-breaking spaces are converted to plain spaces when importing docx documents. While non-breaking spaces are not fully supported by RadRichTextBox, this behavior is inconsistent with the behavior of all other formats, which preserve the nbsps on import and on export.
Completed
Last Updated: 15 Apr 2019 06:16 by ADMIN
Release R2 2019
Created by: Janice
Comments: 5
Category: UI for WPF
Type: Feature Request
7
Enable clients to set custom HelpText for the controls from the suite.