In Development
Last Updated: 26 Jul 2024 13:25 by ADMIN

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}" />
Won't Fix
Last Updated: 25 Jul 2024 13:09 by ADMIN

Issues when using IsGroupHeadersVirtualizationEnabled=true in timeline mode with different-sized resources:

- Drag&Drop of appointments ends up in the wrong place. The drop preview is also displayed incorrectly on the wrong "resource".
- Placement of appointments when scrolling vertically. Landing visually in other "resources".
- The marking of the slots/cells under the mouse are shifted/wrong and thus also the selection of areas/slots.
Unplanned
Last Updated: 25 Jul 2024 13:06 by Stenly
Having a file with a very thin border thickness is displayed with increased thickness when displaying a document inside RadPdfViewer.
In Development
Last Updated: 25 Jul 2024 05:31 by ADMIN
When the font size is changed through the Fluent palette, it is not respected in RadNavigationViewItems.
In Development
Last Updated: 24 Jul 2024 13:41 by ADMIN
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.
Unplanned
Last Updated: 24 Jul 2024 10:28 by Anthony
Created by: Anthony
Comments: 10
Category: Map
Type: Bug Report
2

Hi, we use the map control in our application.

We get random KeyNotFoundException in TilesDownloadManager when zooming in... 

System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.
   in System.Collections.Concurrent.ConcurrentDictionary`2.get_Item(TKey key)
   in Telerik.Windows.Controls.Map.TilesDownloadManager.UpdateTileCache()
   in Telerik.Windows.Controls.Map.TilesDownloadManager.Process()
   in Telerik.Windows.Controls.Map.TilesDownloadManager.DownloaderThread()
   in System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   in System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)
   in System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
   in System.Threading.ThreadHelper.ThreadStart()

 

System.Collections.Generic.KeyNotFoundException
  in System.Collections.Concurrent.ConcurrentDictionary`2[[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089],[System.__Canon, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]].get_Item(System.__Canon)
  in Telerik.Windows.Controls.Map.TilesDownloadManager.RemoveTile(Telerik.Windows.Controls.Map.TileId)
  in Telerik.Windows.Controls.Map.TilesDownloadManager.RemoveL1Cache()
  in System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
  in System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
  in System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
  in System.Threading.ThreadHelper.ThreadStart()

We use OpenStreetMapProvider and don't use tile caching.

Unplanned
Last Updated: 24 Jul 2024 06:18 by Dimitar
One is unable to insert SDT (content controls) right before or right after another content control. 
Unplanned
Last Updated: 12 Jul 2024 11:40 by Martin Ivanov

The TableCellProperty.Padding property of the "TableNormal" StyleDefinition doesn't take effect in the UI. The same is valid for the TableProperties.CellPadding property.

To work this around, you can manually set the Padding property of all TableCell elements in the RadDocument.

 var cells = radDocument.EnumerateChildrenOfType<Telerik.Windows.Documents.Model.TableCell>();
 foreach (var cell in cells)
 {
     cell.Padding = new Padding(10);
 }

Unplanned
Last Updated: 12 Jul 2024 10:41 by Stenly
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.
Unplanned
Last Updated: 10 Jul 2024 11:00 by Martin Ivanov
The context menu that opens when you right click in the file explorer (over a file or an empty area) is displayed wrong when the menu is opened on the second monitor. The context menu is offset to the left or right of the mouse, based on the monitor position. The first monitor in this context means the one where the RadFileDialog (or the ExplorerControl) was initially opened. The second monitor is the other monitor.
Unplanned
Last Updated: 08 Jul 2024 11:07 by Stenly
In a dual-monitor scenario, showing a new RadTabbedWindow instance, while having the taskbar on the left-side, will display it over the window.
Unplanned
Last Updated: 05 Jul 2024 13:47 by Martin Ivanov
The horizontal scrollbar of the GridViewScrollViewer automaticall scrolls slightly to the left when the layout is updated and the HorizontalOffset was at the end of the GridView before the update. A layout update in this context can be resize of the RadGridView control or a vertical scroll action in a child RadGridView element.
Unplanned
Last Updated: 05 Jul 2024 11:38 by Zac
Cobination of GetBestView() and SetView() with pixelPadding parameter set might result in such zoom value that Map does not show all of the items intended to focus in the viewport. Padding and should always visualize all items given in the list.
In Development
Last Updated: 04 Jul 2024 10:56 by ADMIN
Grouped grid columns cannot be expanded or collapsed by clicking the row in the Windows 11 theme with XAML binaries.
Won't Fix
Last Updated: 03 Jul 2024 10:22 by ADMIN
InvalidOperationException with a grouped grid in Windows11 theme (Animation Invalid DefaultValue). 
Unplanned
Last Updated: 03 Jul 2024 07:53 by ief
Alternating Rows feature is not working when a column is sorted and the Equals method is overridden in the business object.
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. 
Unplanned
Last Updated: 01 Jul 2024 13:36 by Franz
Slots in ScheduleView with virtualization are not rendered when resetting the bound collection instead of adding one by one 
Completed
Last Updated: 01 Jul 2024 13:16 by ADMIN
Release 2024.2.701 (Preview)
Exception when changing a non-visible bound property.
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
InvalidOperationException when importing an HTML in Parallel.Foreach
1 2 3 4 5 6