Similar to the Windows8 RadRadialMenu RadRadialMenu is available in Q3 2014.
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.
Develop a new control - Reflection Control.
New TimeLine control featuring ZoomBar.
Deliver an icon library which can be easily used in the user's application.
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.
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
The fix will be included in our LIB v. 2015.02.0810.
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.
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.
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.
A control that allows you to generate complex layouts. Available since R3 2016 Official Release.
Something like an image Viewer for WPF with some kind of animation, not too fancy though.
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; } }
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:
View specific features
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.
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.