Completed
Last Updated: 22 Feb 2017 12:37 by ADMIN
Incorrect output when creating an archive from a json file (when the text in the file is too long).
Completed
Last Updated: 31 Jan 2022 13:43 by ADMIN
The delay is observed when the project already references one of our WPF NuGet and you open the NuGet window to add more NuGets.
Declined
Last Updated: 18 Jan 2016 14:02 by ADMIN
A selection in RadListBox, RadColorPaletteVIew, RadTreeView. RadGridView etc. cannot be made with touch gestures when the control is inside a ScrollViewer.


Reason for declination:
This is not a bug in the touch logic of the controls. The selection does not work because the manipulations of the ScrollViewer are enabled and the scroller captures the touch and marks the touch events as handled, leaving the ScrollViewer the only element to receive touch events. There are at least two possible solutions for this.

1.If you have access to the ScrollViewer, you can set attached TouchManager.ScrollViewerSwipeMode for the ScrollViewer to Self.

<ScrollViewer telerik:TouchManager.ScrollViewerSwipeMode="Self" />

2. If you do not have access to the ScrollViewer, you can use a combination of two attached properties, for the elements inside the scroller. The two properties are two of the attached TouchManager properties - TouchMode and ScrollViewerSwipeMode.

<ScrollViewer>

   ...

      <telerik:RadCartesianChart telerik:TouchManager.TouchMode="Locked" telerik:TouchManager.ScrollViewerSwipeMode="Parent" />

Completed
Last Updated: 22 Feb 2017 12:37 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for WPF
Type: Bug Report
7
When certain files are added to ZipPackage IndexOutOfRangeException is thrown.
Completed
Last Updated: 22 Feb 2017 12:37 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 2
Category: UI for WPF
Type: Bug Report
6
When you create a ZipPackage and then use the Add method to add a .dll file the created archive is corrupted.
Completed
Last Updated: 14 Jul 2014 13:43 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: UI for WPF
Type: Bug Report
6
New TimeLine control featuring ZoomBar.
Completed
Last Updated: 15 Sep 2022 10:41 by ADMIN
Release LIB 2022.3.919 (19 Sep 2022)

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 

Completed
Last Updated: 16 Sep 2015 17:27 by David Totzke
The fix will be included in our LIB v. 2015.02.0810.
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;
    }
}
Completed
Last Updated: 04 Aug 2021 11:24 by ADMIN
Release LIB 2021.2.809 (9 Aug 2021)
When run under .Net Core the popup appears at the wrong location/off the screen.
Unplanned
Last Updated: 04 Oct 2021 12:53 by ADMIN
Created by: LindenauAtSOG
Comments: 9
Category: UI for WPF
Type: Bug Report
4
Bug can be observed using the Demo => PivotGrid => More OLAP Examples

Setup like so and hit refresh


A customer reported this issue. We could observe that the memory of the process was exploding, this doesnt happen in the demo for some reason.
Using the old RadarSoft  WinForms Pivot Control, the same view that our customer had issues with, is loading in a reasonable time.



Please also make sure that in future releases you add some cancel functionality so one doesn't have to restart the application....
Completed
Last Updated: 02 Apr 2014 11:19 by ADMIN
Set Content="_button" in Button styled with ExpressionDark theme. Press Alt+b this should activate the Click event handler of the button but it doesnt.
Completed
Last Updated: 22 Feb 2017 12:37 by Jörg
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for WPF
Type: Bug Report
4
When used to zip files which names contains special characters(such as swedish special characters) the filename is displayed with wrong encoding after unzipping the file.

The fix is available in our latest LIB release (v. 2015.1.0323).
Completed
Last Updated: 22 Feb 2017 12:37 by ADMIN
We have a zip file created with the ZipLibrary.
It is not possible to extract it with the "Compressed Folder Tools" tool from the "Windows Explorer" application, which is the default compress tool in Windows 8.
The result is an error saying that the zip file is invalid.
Declined
Last Updated: 15 Jun 2022 06:35 by ADMIN
Created by: Eldoir
Comments: 2
Category: UI for WPF
Type: Bug Report
4

Hello,

When I do the following:

and I assign this style to my dynamically created columns from a behavior attached to the RadGridView, the style of the tooltip is the same as the style of the header.

They seem to share the same style, so that when I change one property on the header, the tooltip gets the same, and vice-versa.

Do you repro? I'm on version 2020.3.1020.45.

Thanks,

Arthur

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: 24 Sep 2019 06:43 by ADMIN
TabIndex property is not respected when the IsEditable property of the RadComboBox is set to true.
Completed
Last Updated: 22 Feb 2017 12:37 by ADMIN
The fix will be available in our next LIB release (v. 2015.03.1005).
Declined
Last Updated: 22 Feb 2017 12:33 by ADMIN
Accessing one of the entries in the archive throws a generic "Invalid data" exception.
This item is migrated to the Telerik Document Processing portal: 
http://feedback.telerik.com/Project/184/Feedback/Details/190159 
Please use the new item for commenting, voting and subscribing instead of this one.
Completed
Last Updated: 25 Jul 2016 06:54 by ADMIN
Available in LIB version: 2016.2.725
1 2 3 4 5 6