Unplanned
Last Updated: 10 Sep 2024 19:39 by Martin
The text is not committed and is still in edit mode when the control loses focus. The partial commit of content is not working as well.
In Development
Last Updated: 10 Sep 2024 09:28 by ADMIN
Scheduled for 2024.3.806 (2024 Q3)

When the SelectionMode of RadAutoCompleteBox is changed, the search text is cleared. However, this clears only the Text property of the underlying TextBox element. The SearchText property of the control is not cleared.

To work this around, you can manually set the SearchText after setting the SelectionMode.
this.autoCompleteBox.SelectionMode = AutoCompleteSelectionMode.Multiple;
this.autoCompleteBox.SearchText = null;

Unplanned
Last Updated: 10 Sep 2024 04:53 by ADMIN
The rotation animation is not rendered correctly. The center is not at proper palce. 
Unplanned
Last Updated: 04 Sep 2024 05:14 by Andrea
See if we can improve the TryGetValueByReflection method when using dynamic objects.
In Development
Last Updated: 03 Sep 2024 13:38 by ADMIN
The annotations are not restored correctly when performing undo operations 3 times.
Unplanned
Last Updated: 02 Sep 2024 11:14 by Vladimir
Controls placed inside a LayoutControlExpanderGroup do not get notified for space/enter key presses when the IsExpandable property of group is False. For example a TextBox placed inside a LayoutControlExpanderGroup will not register any space/enter keys in that case.
In Development
Last Updated: 30 Aug 2024 10:10 by ADMIN
Created by: Anthony
Comments: 13
Category: Map
Type: Bug Report
3

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: 28 Aug 2024 09:21 by Jorge
Incorrect DPI Scaling when half of the window is on another monitor with different scaling. 
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.
Unplanned
Last Updated: 28 Aug 2024 05:40 by Keisuke
Exception when manipulating shapes in Flow layout mode.
In Development
Last Updated: 27 Aug 2024 11:36 by ADMIN
One is unable to insert SDT (content controls) right before or right after another content control. 
In Development
Last Updated: 27 Aug 2024 09:35 by ADMIN
ADMIN
Created by: Mihail
Comments: 0
Category: PDFViewer
Type: Bug Report
0
The performance of loading the thumbnails is decreased with the removing of the cache in PdfViewer. 

Possible reason is that the pages are no longer loaded asynchronously.

Steps to reproduce:
- Open the SDK with the thumbnails for PDFViewer.
- Notice that the load of the thumbnails is slow.
In Development
Last Updated: 27 Aug 2024 06:24 by ADMIN
Alternating Rows feature is not working when a column is sorted and the Equals method is overridden in the business object.
Declined
Last Updated: 26 Aug 2024 05:20 by ADMIN
Created by: Viktor
Comments: 1
Category: Gauge
Type: Bug Report
0

Hi!

Iam trying to use a RadGauge to display two values, CurrentCapacity and MaxCapacity, and I thought a gauge would be a nice way. But my marker on the RadHorizontalLinearGauge does not align correctly.

<telerik:RadHorizontalLinearGauge>
    <telerik:HorizontalLinearScale Min="0" Max="10" >
        <telerik:HorizontalLinearScale.Indicators>
            <telerik:Marker Value="2"></telerik:Marker>
        </telerik:HorizontalLinearScale.Indicators>
    </telerik:HorizontalLinearScale>
</telerik:RadHorizontalLinearGauge>

Results in:

Notice marker is not on 2. The same problem occurs with different Max and Values. 

 

Do I have some strange style that applies a margin/padding or something?

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.
Unplanned
Last Updated: 21 Aug 2024 07:24 by Stenly
A NullReferenceException is raised when a Style that targets the RadAutoCompleteBox sets the SelectionMode property and the SelectionMode property is set explicitly on a RadAutoCompleteBox instance explicitly to a different mode.
Unplanned
Last Updated: 21 Aug 2024 06:18 by Tommy
Hue-saturation pad is non-linear in HLS mode. the behavior is different when mowing the color circle and using the pad.
Unplanned
Last Updated: 19 Aug 2024 14:10 by Martin Ivanov

If you drag the pane from one RadDocking element to another, the ActivePane of the docking that started the drag operation is not cleared. The ActivePane should be updated (set to null, or updated in accordance to the PaneActivationMode setting) because the corresponding pane is no longer in this RadDocking instance.

To work this around, you can subscribe to and manually update the ActivePane property.

   private void RadDocking_LayoutChangeEnded(object? sender, EventArgs e)
    {
        var docking = (RadDocking)sender;
        if (docking.ActivePane != null && !docking.Panes.OfType<RadPane>().Contains(docking.ActivePane))
        {
            docking.ActivePane = null;
        }
    }

Unplanned
Last Updated: 16 Aug 2024 11:51 by Eugene
Processing hangs on HTML import when the html file contains large base64 images. 
Unplanned
Last Updated: 16 Aug 2024 09:14 by John
PdfViewer: The selected page is not synchronized with the selected index in the Thumbnail view when a document is opened manually. This issue occurs in the thumbnail example in the demo applicationl. 
1 2 3 4 5 6