Completed
Last Updated: 27 Oct 2014 15:07 by DADean
ADMIN
Created by: Konstantina
Comments: 1
Category: UI for WPF
Type: Feature Request
6
Similar to the Windows8 RadRadialMenu

RadRadialMenu is available in Q3 2014.
Completed
Last Updated: 17 May 2019 05:46 by ADMIN
Release R2 2019
ADMIN
Created by: Sia
Comments: 3
Category: UI for WPF
Type: Feature Request
6
In that way it will be easily modified through the palette of themes such as Windows8, Windows8Touch, Office2013 and VisualStudio2013 and it won't be needed to overwrite the whole template. That feature is very important for users with visual impairment or where low contrast screens are used. 
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for WPF
Type: Feature Request
6
Develop  a new control - Reflection Control.
Completed
Last Updated: 14 Jul 2014 13:43 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for WPF
Type: Bug Report
6
New TimeLine control featuring ZoomBar.
Unplanned
Last Updated: 26 Oct 2016 08:31 by ADMIN
ADMIN
Created by: Martin Ivanov
Comments: 0
Category: UI for WPF
Type: Feature Request
6
Deliver an icon library which can be easily used in the user's application.
Unplanned
Last Updated: 28 Jul 2023 11:11 by Richard
Created by: Martin Ivanov
Comments: 3
Category: UI for WPF
Type: Feature Request
6

Telerik assemblies needs to be rebuild with a specific key in some redistribution scenarios, so that the assemblies can be bound only to a single WPF application. This is described in the following article: https://docs.telerik.com/devtools/wpf/licensing/protecting-telerik-assembly

Currently, to protect the dlls you need to rebuild the entire source code of Telerik UI for WPF. Sometimes this is not very convenient and it is prompt to errors because several steps should be followed and also few prerequisites should be met.

Consider providing a new mechanism to protect the Telerik assemblies, which is more convenient and gives better protection. 

Completed
Last Updated: 15 Sep 2022 10:41 by ADMIN
Release LIB 2022.3.919 (19 Sep 2022)

Selecting a pinned row or column results in wrongly selected indexes. 

Steps to reproduce:

Case #1: 

1. Pin a row

2. Select the pinned row 

result: a wrong row is selected

Case #2: 

1. Pin one column 

2. Select a cell from the pinned column 

Result: The visual selection is for the first unpinned cell. The selected indexes are wrong too. The Column index is always 0 

Completed
Last Updated: 16 Sep 2015 17:27 by David Totzke
The fix will be included in our LIB v. 2015.02.0810.
Completed
Last Updated: 08 Aug 2019 05:16 by ADMIN
Release R3 2019
Created by: Marc-Andre
Comments: 4
Category: UI for WPF
Type: Feature Request
6
I know you added a sample (https://github.com/telerik/xaml-sdk/tree/master/Buttons/ToggleSwitchButton) but please include this in all your Theming dll.
Declined
Last Updated: 22 Feb 2017 12:33 by Siri
ADMIN
Created by: Aylin
Comments: 2
Category: UI for WPF
Type: Feature Request
6
They are exported with the /EmbeddedFiles switch. This would allow adding external files to the PDF document.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190045 
Please use the new item for commenting, voting and subscribing instead of this one.
Declined
Last Updated: 22 Feb 2017 12:33 by Manoj
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190078 
Please use the new item for commenting, voting and subscribing instead of this one.
Completed
Last Updated: 15 Sep 2016 06:35 by Vesko
Created by: Vesko
Comments: 0
Category: UI for WPF
Type: Feature Request
5
A control that allows you to generate complex layouts.

Available since R3 2016 Official Release.
Unplanned
Last Updated: 03 Jan 2017 20:51 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for WPF
Type: Feature Request
5
Something like an image Viewer for WPF with some kind of animation, not too fancy though.
Unplanned
Last Updated: 05 Jan 2017 08:00 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for WPF
Type: Feature Request
5

			
Unplanned
Last Updated: 19 Jul 2018 10:55 by Rick
Created by: Rick
Comments: 0
Category: UI for WPF
Type: Bug Report
5
List numbering should be restarted when copied list is pasted after content that is not in a list.

Steps to reproduce:
1. Create a file with a list, a blank line, some text, and another blank line
2. Copy the list
3. Paste it on the blank line directly after the list
Expected: The items are added to the end of the existing list
Observed: The items are added to the end of the existing list
4. Paste it on the blank line after the text
Expected: The items are added to a new list and start numbering at 1
Observed: The items are added to the existing list and start numbering at 7

Workaround:
private void RadRichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e)
{
    if (e.Command is PasteCommand)
    {
        DocumentPosition position = new DocumentPosition(this.radRichTextBox.Document);
        position.MoveToPosition(this.radRichTextBox.Document.CaretPosition);
        position.MoveUp();
        Paragraph previousParagraph = position.GetCurrentParagraphBox().AssociatedParagraph;
        if (previousParagraph.IsInList)
        {
            // We shouldn't restart the numbering when the previous paragraph is in a list.
            return;
        }

        RadDocument doc = ClipboardEx.GetDocument().ToDocument();
        Paragraph firstParagraph = doc.EnumerateChildrenOfType<Paragraph>().First();
        if (firstParagraph != null && firstParagraph.IsInList)
        {
            RadDocumentEditor editor = new RadDocumentEditor(doc);
            editor.Document.CaretPosition.MoveToStartOfDocumentElement(firstParagraph);
            editor.RestartListNumbering();
        }

        this.radRichTextBox.InsertFragment(new DocumentFragment(doc));
        e.Cancel = true;
    }
}
Unplanned
Last Updated: 09 Jul 2020 11:46 by ADMIN
Created by: Valentin
Comments: 10
Category: UI for WPF
Type: Feature Request
5

It would be awesome if the user would be able to create folders for visual organization in tree views, tree list views and list views. These folders should not be actual items in the tree, but rather be a visual simplification for complex lists and trees.

Folder specific features:

  • Add, move, rename and delete folders
  • Add or move items to the folders (for example via drag&drop)
  • Move and delete folders with their content
  • Verification, if certain types are allowed in a folder
  • Sort the content of the folder

    View specific features

  • Switch between “folder view” and “folderless view”
  • Save and load structures, similar to the LayoutControl
  • Verification, if a folder is allowed to be moved to or created in certain areas
  • Possibility to manipulate the structure from the code

With this feature the user would find it easier to organize sometimes complex trees and lists into manageable folder structures, as the layout would be created by the user himself. The folders also make collective operations on items in them easier to handle, as the user can move or delete the folder with its content and does not need to select long lists of items for every operation. This would increase the usability of the trees and lists.

Declined
Last Updated: 02 Sep 2016 08:52 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 7
Category: UI for WPF
Type: Feature Request
5
Automatic or easy to configure support for displaying the UAC shield icon when the command that will be executed by the Button or the Menu item will require elevated permissions.
Unplanned
Last Updated: 14 Apr 2023 13:09 by Stenly
Created by: Stenly
Comments: 0
Category: UI for WPF
Type: Feature Request
5
Add Sankey Diagram Control component.
Unplanned
Last Updated: 08 Mar 2019 14:10 by ADMIN
Created by: Felix
Comments: 1
Category: UI for WPF
Type: Feature Request
5
We have customers in Brasil and Polish. It would be very helpful, if Telerik would support these languages out of the box. Otherwise we have to adapt our product whenever we are upgrading to a new Telerik version.
Completed
Last Updated: 24 May 2023 06:54 by ADMIN
Release R2 2023
Created by: John Schroedl
Comments: 0
Category: UI for WPF
Type: Feature Request
5
Introduce a new theme with the Windows 11 look but with smaller sizes.