Unplanned
Last Updated: 31 Mar 2020 11:15 by ADMIN
SelectedItems collection not updated when items are removed
Unplanned
Last Updated: 05 Jan 2017 07:59 by Murray
ADMIN
Created by: Telerik Admin
Comments: 2
Category: TileView
Type: Bug Report
17
Allow users to resize the tiles. Possibly by dragging a left-mouse cursor on the edges of the tiles. This will give flexiblity beyond the 3 fixed size of minimized, maximized, and restored.
Unplanned
Last Updated: 20 Mar 2023 06:36 by Gabriel
The caret position is incorrect with the custom Gilroy font
Unplanned
Last Updated: 27 Dec 2016 13:13 by ADMIN
MapPath shape doesn't support data binding on the level of the MapPathFigure and MapPathSegment in WPF.
This feature is implemented in the new visualization engine -Visualization layer and the bindable wrappers - PathView, PathVigureView, PathSegementView , etc.
Unplanned
Last Updated: 31 Oct 2018 07:50 by ADMIN
When the focus gets in RadRichTextBox, AutomationProperties.Name is not pronounced by screen readers (for example by Windows Narrator).

Workaround: the automation name could be set to the caret as demonstrated in the attached project.
Unplanned
Last Updated: 29 Dec 2016 16:03 by ADMIN
Rendering issues occure when using Hierarchical virtualization mode and bring into view.
The issue is hit in both platforms - WPF and Silverlight. 
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
ADMIN
Created by: Evgenia
Comments: 0
Category:
Type: Bug Report
13
When you make the window very small in height and then revert it back to normal size the Pie connectors are gone.
Unplanned
Last Updated: 31 Oct 2018 07:50 by ADMIN
When track changes are enabled deleted content is also taken into account when spellchecking.

Steps to reproduce:
- Type in a wrong word (e.g. thos). 

- Turn Track Changes on. 

- Select the o and replace it with i. 

Expected: The word is not considered wrong and underlined by the spellchecker.

Actual:  "thois" is spell checked and evaluated as wrong. 
Unplanned
Last Updated: 14 Dec 2017 15:49 by ADMIN
'Decrement paragraph left indent' command can set negative left indent which makes bullets/numbering of a list clipped. Instead, it shouldn't be executed if the bullets/numbering would become invisible.

Workaround: Cancel the command in CommandExecuting event:

            this.radRichTextBox.CommandExecuting += (sender, e) =>
            {
                if (e.Command == this.radRichTextBox.Commands.DecrementParagraphLeftIndentCommand)
                {
                    if (this.radRichTextBox.Document.Selection.GetSelectedParagraphs().Any(p => p.IsInList && p.LeftIndent <= 24))
                    {
                        e.Cancel = true;
                    }
                }
            };
Unplanned
Last Updated: 25 Nov 2019 14:00 by ADMIN
Scrollviewer is not updated when row details are collapsed.
Unplanned
Last Updated: 12 Jan 2018 12:56 by ADMIN
When a value is selected in the FontSize combo box using the arrows and Enter, the font size of the selected text is not updated. The same scenario is working as expected when using the font size combo box from the ribbon.
Unplanned
Last Updated: 11 Aug 2016 14:04 by ADMIN
Chart - properties are not bound correctly when chart is in DataTemplate.
Unplanned
Last Updated: 31 Oct 2018 07:50 by ADMIN
When inserting text (document fragment) next to a correctly spelled word they get both underlined as incorrect.
Unplanned
Last Updated: 31 Oct 2018 07:51 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: Spreadsheet
Type: Bug Report
10
Check how the performance can be improved in this scenario. The StyleGallery is taking much time to load, the GetUsedCellRange method is called multiple times.
Unplanned
Last Updated: 05 Jan 2017 07:58 by Andrii
ADMIN
Created by: Telerik Admin
Comments: 4
Category: Book
Type: Bug Report
10
When hover over the fold of the right(left) page and around the fold, sometimes the opposite -left (right) page is changing its content (the next page is shown)
Unplanned
Last Updated: 27 Dec 2016 12:48 by ADMIN
In a virtualized TreeView, after ExpandAll and scroll operations, there are gaps in the TreeViewPanel.
Unplanned
Last Updated: 27 Dec 2016 12:47 by ADMIN
RadTreeViewItem.AutomationProperties.Name is not read correctly since version 2011.2
Unplanned
Last Updated: 24 Jun 2021 09:44 by ADMIN
If you move an item from one level to another into the tree, the indent of the corresponding row won't get updated. This is reproducible only if the new parent of the moved item is expanded, while the operation is executed.

Usually, this can be reproduced by calling the ExpandHierarchyItem() for the new parent item method just after the moving of the original item.

To resolve this you can delay the expanding of the item. Note that the expanding is executed manually by calling the ExpandHierarchyItem() method. So, you can use a dispatcher with a lower DispatcherPriority to delay this.

Or alternatively, you can collapse the item before expanding it (using the CollapseHierarchyItem() method).
Unplanned
Last Updated: 27 Jun 2018 17:48 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 3
Category: TreeView
Type: Bug Report
9
System.Windows.Media.Animation Warning is apparent during DragDrop in the TreeView in WPF. 
1 2 3 4 5 6