Unplanned
Last Updated: 03 Sep 2019 09:40 by ADMIN
Export and then import a linked style with HtmlFormatProvider and the style gets lost on import.
Unplanned
Last Updated: 21 May 2019 11:05 by ADMIN

Currently when you highlight a row in the child GridView, the ParentRow becomes highlighted. It would be really nice to have an option so that the ParentRow would be selected when a row in the child GridView is selected. This should work recursively selecting the ParentRow all the way up the hierarchy.

I've written a workaround, but it isn't pretty.

Please add this functionality. :)

 

My case involves a three tier hierarchical GridView (each in single select mode). If I select a row in a third tier GridView, then I want its ParentRow to become selected on the second tier and the second tier's ParentRow to become selected on the first tier. Hopefully that makes sense.

Unplanned
Last Updated: 12 Mar 2019 14:39 by ADMIN
Created by: Grinden
Comments: 1
Category: UI for WPF
Type: Feature Request
10
Simplified and Traditional please
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.
Unplanned
Last Updated: 08 Mar 2019 14:05 by ADMIN
Created by: Felix
Comments: 0
Category: UI for WPF
Type: Feature Request
2
Add localization support for Polish language
Unplanned
Last Updated: 08 Mar 2019 11:39 by ADMIN
Created by: BlueStack
Comments: 0
Category: UI for WPF
Type: Feature Request
4
Please, provide official Russian Localization for, at least, WPF products. This is the only question, why customers chose other providers than Telerik. For example, I like Telerik WPF controls more, but me head at work bought other WPF-vendor because they provided official Russian Localization. Thanks.
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.
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: 23 Nov 2018 15:42 by ADMIN
Created by: Karl
Comments: 0
Category: UI for WPF
Type: Feature Request
2
Would be useful for setting timezone offsets and for more control to the user
Unplanned
Last Updated: 13 Nov 2018 11:53 by ADMIN
Currently, the DefaultVisualStyleSelector doesn't kick-in when the Direct2D or the Bitmap render options are used and their DefaultVisualRenderMode property is set to Batch.

Note that DefaultVisualRenderMode=Separate works.
Unplanned
Last Updated: 02 Oct 2018 09:30 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: UI for WPF
Type: Bug Report
3

			
Unplanned
Last Updated: 18 Sep 2018 15:25 by ADMIN
In the current version of the WPF SDK Sample Browser Application it is really hard to track what's new and what control was updated. Even the version of Sample Browser by itself (2018.3) is not visible.

Maybe you remember the former Sivlerlight Online Demos (I'm not sure if it is still around but I cannot run it anymore because it needs IE11)? There was always an updated or new badge on the controls. So it was obvious what was new and updated.

I think this should be possible in WPF also.

When hovering with the mouse over the control panels there shoud be more information shown like date of the last update of the sample.

When clicking on a control on viewing the samples of the control, I can only open the folder, open in VS or run it. Sometimes it makes sense to open directly the sample on github to quickly check the version history.
Unplanned
Last Updated: 14 Sep 2018 13:59 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: UI for WPF
Type: Feature Request
3

			
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: 11 Jun 2018 13:59 by ADMIN
maybe there are some ways to appear the  mouse point offset grow in steps when move the float window in raddocking by mouse drag.but I found when move the float window's header pass the document's tab,don't docking,then release mouse,and then move the float window again back and forth or up and down,the  mouse point offset grow in steps, at last the mouse's point leave the float window's header with hold the window's drag state.
Unplanned
Last Updated: 07 Jun 2018 14:32 by Keith
Created by: Keith
Comments: 0
Category: UI for WPF
Type: Feature Request
11
Similar to File Explorer in Windows 10, it would be helpful to have a Quick Access section in the left navigation pane with the ability to pin frequently used items.
Unplanned
Last Updated: 20 Mar 2018 09:26 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: UI for WPF
Type: Feature Request
2

			
Unplanned
Last Updated: 26 Feb 2018 12:20 by ADMIN
ADMIN
Created by: Sia
Comments: 0
Category: UI for WPF
Type: Feature Request
1
When you start editing the input control, the watermark text should go on top of it or to the left.
Unplanned
Last Updated: 05 Feb 2018 09:52 by alang
https://www.telerik.com/forums/printing-3559585fdb4e
https://www.telerik.com/forums/print-bb34c69c1e37
https://www.telerik.com/forums/printing-rasscheduleview-mvvm
Unplanned
Last Updated: 18 Dec 2017 13:14 by ADMIN
It seems that on some devices a touch with the Stylus doesn't fire the WPF native Touch events. Only the Stylus events will be fired. Because the TouchManager internally works only with the WPF Touch events, the manager's events are not fired.