Completed
Last Updated: 06 Aug 2018 13:32 by ADMIN
With the Windows 10 Anniversary update native controls like TextBox provide this out of the box.
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;
    }
}
Declined
Last Updated: 16 Jul 2018 08:22 by ADMIN
Created by: Brad
Comments: 3
Category: UI for WPF
Type: Bug Report
1
I am attempting to use a ReleativeSource in my bindings in two places in a RadGridView:  1) the header of a column, and 2) one of the columns.  I am getting "System.Windows.Data Error: 4 : Cannot find source for binding with reference" in both cases.

I don't think I need to elaborate much, since https://www.telerik.com/forums/can%27t-find-the-right-ancestor-to-bind-to not only describes it perfectly, but also contains sample code from Telerik that, on my machine, fails the same way.
Declined
Last Updated: 10 Jul 2018 11:07 by ADMIN
ADMIN
Created by: Anna
Comments: 2
Category: UI for WPF
Type: Feature Request
3
In addition to the fast document generation, the SpreadStreamProcessing can be adapted to import documents significantly faster than SpreadProcessing.

This item has been moved to the Document Processing portal. It can be found here: https://feedback.telerik.com/Project/184/Feedback/Details/251942-spreadstreamprocessing-implement-workbook-import
Declined
Last Updated: 21 Jun 2018 14:52 by ADMIN
Created by: Rebecca
Comments: 2
Category: UI for WPF
Type: Bug Report
1
Hi,

I have implemented a WPF application that displays various pages.

I have the following code that is executed on one of my pages after a user logs in. This same code is executed when the user returns to the page:

If myUser.IsInRole("Master") Or myUser.IsInRole("Administrator") Then
            myRadGridView.SelectionMode = SelectionMode.Multiple
Else
           myRadGridView.SelectionMode = SelectionMode.Single
End If

After logging in the myRadGridView grid behaves as if it is SelectionMode.Single even though my user is in the role "Master" and the code branch above is executed to set the myRadGridView grid into SelectionMode.Multiple.

That being said, if I leave the page and come back to it, the same code is executed and the myRadGridView grid finally behaves as it should be in SelectionMode.Multiple.

How do I fix get this to work?

Thank you.
Declined
Last Updated: 21 Jun 2018 14:52 by ADMIN
Created by: Nebojsa Mancic
Comments: 1
Category: UI for WPF
Type: Feature Request
0
I want to have opportunity to disable RadExpander header because I want to programmatically expand or collapse RadExpander control.
Declined
Last Updated: 21 Jun 2018 14:52 by ADMIN
Affects RadDateTimePicker control of TelerikWPFControls version 2015.1.1

When the user is typing in a specific date and time, the RadDateTimePicker control's text-to-date parsing doesn't accept an uppercase 'A' at the start of what it expects to be the month's name and automatically errors (displays a tooltip showing 'Error') as soon as an 'A' is input. This prevents the user from entering dates and times more specific than the clickable selection for the months of 'April' and 'August'. However, replacing the 'A' with a lowercase 'a' allows the user to proceed with entering more specific dates and times as normal without the 'Error' tooltip showing. 

E.g.: 
1) the user selects 03 April 2018 17:00:00 from the control's clickable selection of date and times;

2) they then try to type more specific minutes and seconds, e.g. 03 April 2018 17:45:23, but this is not accepted by the control and it displays the 'Error' tooltip;

3) workaround - the user changes 'A' of 'April' to a lowercase 'a', as in 'april'. Now the 'Error' tooltip goes away and the user is able to enter and save the more specific date time of 03 april 2018 17:45:23.

This bug only came to light once the control was live in production (released in January) and prevented our users from entering the specific trade date times necessary for regulatory purposes.

Can you tell me if this bug has been fixed in later versions of the control?

Thanks and regards,

Robert Fiteni
Declined
Last Updated: 21 Jun 2018 14:51 by ADMIN
Created by: wu
Comments: 1
Category: UI for WPF
Type: Bug Report
1
check the attach file,the gridview's droplist extend the screen area,
my screen is 2560x1440/175% DPI/14 inch/windows 10
Completed
Last Updated: 21 Jun 2018 14:48 by pavi
Created by: pavi
Comments: 2
Category: UI for WPF
Type: Bug Report
1
When I scroll around in RadVirtualGrid, I get empty cells in some places.

Details:
- I set InitialRowCount=21 and InitialColumnCount =17.
- The window that contains the VirtualGrid is rather small, so that the horizontal and vertical scrollbars are visible.
- I can always reproduce this issue, if I scroll completely to the right, then completely to the bottom and then half-way to the left.
- I found out that the CellValueNeeded event is never called with the indexes for these cells.
- I'm using version 2017.2.614.45 (NoXaml) of UI for WPF.
- I attached a screenshot showing the empty cells and my example project.
Completed
Last Updated: 15 Jun 2018 15:52 by ADMIN
A project with problems in RadTreeListView in the attachment.

Description of the project:

The element RadTreeListView have the name ObjectsTree.  As the ItemsSource of ObjectsTree set the child elements of ObjectsTreeViewModel. ObjectsTreeViewModel contains child elements of type ParentNode. The elements of ParentNode have childrens with type ChildNode. (In the project are used 3 ParentNode elements with 3 childNodes at everyone).

ChildNode elements that have the property ShowNode  equals false should not be displayed. To do this, used the FilterDescriptor. The property IsConnected of ChildNode elements sets the ShowNode property (ShowNode = IsConnected).

The button "Node to offline" is used to reset a property IsConnected to the selected ParentNode element and to all of his children.
The button "All Nodes to online" is used to set a property IsConnected to the all ParentNode elements and to all of their children.
The button "Check Memory Leak" is used update ObjectTree 10000 times.
If you check radiobutton "With Rebind" update using Rebind() command
If you check radiobutton "With clearing filter" update using command sequence : FilterDescriptors.Clear -> FilterDescriptors.Add.

Description of the problem:
1)	When updating the tree using the sequence of commands FilterDescriptors.Clear (); FilterDescriptors.Add (...):
The visual element displays the elements of tree correctly, but there is a memory leak.

2)	When updating with Rebind ():
Memory leaks are not present, but we may see following bug:
Select ParentNode.
Press the "Node to offline" button      -> The child elements are hidden, but a triangle for expanding the list elements is visible.
When you click on this triangle            -> it disappears
Press the button "All Nodes to online" ->the children and the triangle do not appear.
Completed
Last Updated: 13 Jun 2018 12:17 by ADMIN
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.
Declined
Last Updated: 11 Jun 2018 13:57 by Anthony
Setting the TextWrapping to Wrap or WrapWithOverflow will not allow the WatermarkContent to be wrapped.

Reason for decline: 

Instead of setting the content inline, we recommend setting it as follows: 

<telerik:RadWatermarkTextBox Width="100">
	<telerik:RadWatermarkTextBox.WatermarkContent>
		<TextBlock TextWrapping="Wrap" Text="Watermark Content Watermark Content Watermark Content Watermark Content" />
	</telerik:RadWatermarkTextBox.WatermarkContent>
</telerik:RadWatermarkTextBox>

More information can be found in our help about using the WatermarkContent and WatermarkTemplate properties: https://docs.telerik.com/devtools/wpf/controls/radwatermarktextbox/features#using-the-watermarkcontent-property
Please let us know if this is not applicable in the scenario of your application.
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.
Completed
Last Updated: 07 Jun 2018 08:17 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for WPF
Type: Feature Request
18
File explorer with the drag and drop upload and just a richer interface
Completed
Last Updated: 07 Jun 2018 08:15 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 3
Category: UI for WPF
Type: Feature Request
33
A component to easily chat with visitors on a website.  It's becoming popular to be able to interact and offer support that way.  Maybe based on the Windows Live Components or something along those lines.
Completed
Last Updated: 07 Jun 2018 06:42 by ADMIN
ADMIN
Created by: Stefan
Comments: 1
Category: UI for WPF
Type: Bug Report
0
When both horizontal and vertical ScrollBars are visible in Fluent theme, the "BottomHandle" RepeatButton cannot be pressed as it is overlapped by the horizontal ScrollBar on MouseOver. 

Default behavior will be changed and the scrollbars will be reordered in the ScrollViewer ControlTemplate so on MouseOver the current ScrollBar will have higher Canvas.ZIndex. 
Declined
Last Updated: 04 Jun 2018 08:12 by ADMIN
look the attach file.
Declined
Last Updated: 31 May 2018 13:04 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 1
Category: UI for WPF
Type: Bug Report
4
Controls are not visible in design-time when the build platform is x64.
Completed
Last Updated: 13 Apr 2018 05:46 by ADMIN