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.
Completed
Last Updated: 04 Jan 2019 13:42 by ADMIN
An exception is thrown when the ItemsSource of the ItemsSourceProvider is bound to a DataTable and an item is select in the drop-down.

The fix for this issue will be available with our next official version – R1 2019 expected in the middle of January. 
Completed
Last Updated: 18 Dec 2018 14:05 by ADMIN
The current workaround is to handle the Loaded event like so:

        private void RadMultiColumnComboBox_Loaded(object sender, RoutedEventArgs e)
        {
            this.combo.DropDownWidth = this.combo.DropDownMinWidth;
        }


The fix for this issue will be available with the next LIB (version 2018.3.1224) expected on Monday, December 24.
Completed
Last Updated: 12 Dec 2018 11:04 by ADMIN
UI can still accept more inputs  even if item has been selected in SelectionMode="Single"
Please check the screenshot.


SelectionBoxesVisibility property will be introduced with Q1 2019 expected in the middle of January. When set to Hidden/Collapsed, SearchAutoCompleteBox contains the selected item as text only.
Completed
Last Updated: 24 Oct 2018 10:33 by ADMIN
Telerik.Windows.Controls.SpreadsheetUI.for.Wpf NuGet package is not uploaded on the Telerik NuGet server.

Fix available in LIB Version 2018.3.1029.
Completed
Last Updated: 16 Oct 2018 13:04 by ADMIN
The underline types are compared by reference, causing mismatch and incorrect results.

Workaround: Use the UnderlineTypes static class to apply underlines.

Fix available in R3 2018 SP1 release.
Completed
Last Updated: 16 Oct 2018 12:12 by ADMIN
The issue is also observable in the Outlook project template as well - in the NewEmailWindow. As a workaround, the ScreenTip can be removed by deleting the following code:
telerik:ScreenTip.Icon="{telerik:IconResource IconRelativePath=FontDialog.png,IconSources={StaticResource IconSources}}"  

Fix available in R3 2018 SP1 release.
Declined
Last Updated: 08 Oct 2018 07:11 by ADMIN
     if the pie chart area's size is auto,when adjust the area's  vertical size,the pie's radius  will change in order to fit the label display,it is ok,but when adjust the area's horizontal size,the pie's radius don't  change,looking the attachment file,the label move above the pie.
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

			
Completed
Last Updated: 14 Sep 2018 19:51 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: UI for WPF
Type: Bug Report
0
The copyright notice is shown on top of the content. It cannot be moved and there is no way for the customer to see the content beneath the notice.
Completed
Last Updated: 14 Sep 2018 19:51 by ADMIN
ADMIN
Created by: Dilyan Traykov
Comments: 0
Category: UI for WPF
Type: Bug Report
0

			
Completed
Last Updated: 06 Aug 2018 13:33 by ADMIN
Hello,

I am using DateTimePicker with JAWS.  Here are the issue I ran into:
1. JAWS reads out watermark 3 times
2. JAWS reads out date and time where there is only date populate and dateformat is set for shortdate.  For example, date is "04/12/2018".  JAWS reads "04/12/2018 00:00:00"
3. Once the date is populated and date field got focus, it will read out date and time at least 2 times.

I work on project that required it to compliance with government section 508. This issue will not allow me to use Telerik's datepicker.  Please fix this.
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: 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
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.