Completed
Last Updated: 17 Sep 2024 13:07 by ADMIN
Release 2024.2.426 (2024 Q2)
The read-only flag is not respected when importing a document
Completed
Last Updated: 17 Sep 2024 13:03 by ADMIN
When the font is not embedded in the document, PdfViewer tries to read it from the OS. However, the Calibri-Font is not properly parsed and a NullReferenceException is thrown internally for its encoding. 
Completed
Last Updated: 28 Aug 2024 06:51 by ADMIN
Release 2024.3.802 (2024 Q3)
Text is not displayed when using embedded subset of the ToyotaTypeLight font.
Completed
Last Updated: 22 Aug 2024 07:49 by ADMIN
Release 2024.3.821
Performing an Undo operation on a span executes a delete which removes the annotations within the current selection. This leads to invalid removed annotations and exception when executing the second undo.
Completed
Last Updated: 07 Aug 2024 08:39 by ADMIN
Release 2024.3.806 (2024 Q3)
Add the full .NET Framework packages (like Telerik.UI.for.Wpf.45.Xaml) in the Telerik online feed (https://nuget.telerik.com/v3/index.json).
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Currently, setting the IsExpandable and IsTabStop properties to False of the LayoutControlExpanderGroup element does not prevent navigating to the expand/collapse RadToggleButton and expanding/collapsing it.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
When the font size is changed through the Fluent palette, it is not respected in RadNavigationViewItems.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Grouped grid columns cannot be expanded or collapsed by clicking the row in the Windows 11 theme with XAML binaries.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Currently, the RadMultiColumnComboBox control does not support the ValidationErrorTemplateHelper.DisplayMode attached property. We could add support for it.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)

Changing the value of the DocumentSource property at runtime causes the RadPdfViewer to display a busy indicator and not update the displayed PDF file with the new one.

To work this around, derive from the RadPdfViewer and create a new dependency property for the property of the type of PdfDocumentSource (for example, from your view model). In its callback method, call the SetDocumentSource method of the derived RadPdfViewer by passing the new value:

public class MyPdfViewer : RadPdfViewer
{
    public PdfDocumentSource PdfDocumentSource
    {
        get { return (PdfDocumentSource)GetValue(PdfDocumentSourceProperty); }
        set { SetValue(PdfDocumentSourceProperty, value); }
    }

    public static readonly DependencyProperty PdfDocumentSourceProperty =
        DependencyProperty.Register("PdfDocumentSource", typeof(PdfDocumentSource), typeof(MyPdfViewer), new PropertyMetadata(new PropertyChangedCallback(OnDocumentSourceChanged)));

    private static void OnDocumentSourceChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        MyPdfViewer viewer = (MyPdfViewer)d;

        viewer.SetDocumentSource((PdfDocumentSource)e.NewValue);
    }
}
<local:MyPdfViewer x:Name="pdfViewer" PdfDocumentSource="{Binding MyViewModelPropertyOfTypePdfDocumentSource}" />
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Exception when changing ItemsSource when it's a CollectionViewSource and grouping is applied.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Saving and loading a minimized ToolWindow causes the elements inside RadDocking to not behave as expected. For example, dragging a pane may not visualize the ToolWindow, or selecting a pane may not mark it as active/selected.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Improve the speed of the delete operation when deleting content in large documents.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
Calculated values are not updated when updating other values in the grid.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
We could add an option to group the dates in the FilteringControl similar to how Excel groups them.
Completed
Last Updated: 07 Aug 2024 08:11 by ADMIN
Release 2024.3.806 (2024 Q3)
When using Search as You Type behavior, the items will be first filtered using the keywords typed in the TextBox. We can create a way to disable this filtering.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
OverflowException is thrown while importing document using Helvetica font with custom encoding.
Completed
Last Updated: 02 Aug 2024 11:09 by ADMIN
Release 2024.3.802 (2024 Q3)
When changing the device culture to RTL (e.g. Hebrew but not only) in a project targeting .NET 5 (or later), some documents are rendered incorrectly.
Completed
Last Updated: 01 Aug 2024 11:01 by ADMIN
Release 2024.2.514 (2024 Q2)
The measuring logic of the groups in RadTileList was changed because of a new feature which brings issues with some layouts defined in the GroupTemplate. For example, if you have a TextBlock in the GroupTemplate, and set its HorizontalAlignment to Center, the TextBlock will be positioned around the center of the RadTileList control, instead of the group's center. Also, in this case the TextBlock disappears. 
Completed
Last Updated: 02 Jul 2024 05:51 by ADMIN
Release 2024.2.701 (Preview)
The image inside an XObejct is not shown in the correct position. 
1 2 3 4 5 6