Develop a new control - Reflection Control.
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.
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.
The fix will be included in our LIB v. 2015.02.0810.
Deliver an icon library which can be easily used in the user's application.
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.
With the release of the Fluent theme, it would be nice to have a Hamburger Menu control similar to the NavigationView for UWP (https://docs.microsoft.com/en-us/windows/uwp/design/controls-and-patterns/navigationview).
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
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.
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.
Something like an image Viewer for WPF with some kind of animation, not too fancy though.
A control that allows you to generate complex layouts. Available since R3 2016 Official Release.
When possible implement PDF/A-3, this is the new standard in enterprises for the upcoming years. Closure reason: The following versions of PDF/A Standard are implemented: PDF/A-1 (2005), PDF/A-2 (2011), PDF/A-3 (2013). The feature is live with our latest Q1 2015 release.
This item is migrated to the Telerik Document Processing portal: http://feedback.telerik.com/Project/184/Feedback/Details/190035 Please use the new item for commenting, voting and subscribing instead of this one.
Transparency is not shown when we add png images. The feature will be available in our official release Q1 2016.
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.
This is a MVVM helper that could be used to decrease the coupling between the view models.
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; } }