Unplanned
Last Updated: 30 Mar 2023 10:43 by Martin Ivanov
The UI hangs when a custom interval (deriving from IntervalBase) is implemented and specific values are returned in its abstract method implementations.
Unplanned
Last Updated: 30 Mar 2023 08:17 by ADMIN
In Microsoft Word, users can modify the OutlineLevel in the Paragraph Properties dialog.
Unplanned
Last Updated: 29 Mar 2023 11:53 by James

The thinnest line thickness is thinner than in Adobe and it is not scaled according to the scale factor.

Observed:

 

In Development
Last Updated: 29 Mar 2023 08:52 by ADMIN
Cursor jumps to the previous cell when one enters Korean text in a cell.
Unplanned
Last Updated: 28 Mar 2023 11:17 by Stenly
If a scrollbar is contained in the content of a RadCallout, clicking the scrollbar thumb will close it. An example of this is with a RadListBox, where clicking a RadListBoxItem will not close the callout, but clicking the vertical scrollbar will close it.
Unplanned
Last Updated: 28 Mar 2023 07:29 by Andy
Currently, it is difficult to validate hyperlinks without iterating over the document's elements. It will be very convenient to validate them on demand (when they are clicked). In this way warning window like in MS Word will be easily achievable.
Unplanned
Last Updated: 27 Mar 2023 13:52 by ADMIN

Observed when loading a document: 

Completed
Last Updated: 27 Mar 2023 11:41 by ADMIN
Release LIB 2023.1.327 (27 Mar 2023)
Created by: Frank
Comments: 2
Category: PDFViewer
Type: Bug Report
5
No images are shown when opening a file.
Completed
Last Updated: 27 Mar 2023 11:40 by ADMIN
Release LIB 2023.1.327 (27 Mar 2023)
A file shows blank pages with the latest version. Works with R3 2022.
Completed
Last Updated: 27 Mar 2023 09:44 by ADMIN
Release LIB 2023.1.327 (27 Mar 2023)

When the WatermarkBehavior is set to either HideOnTextEntered or HideOnClick, moving the focus with the Tab key will not move it on the first press.

To work this around, handle the PreviewKeyDown event and manually move the focus to the next element when the Tab key is the e.Key property's value.

Completed
Last Updated: 27 Mar 2023 09:44 by ADMIN
Release LIB 2023.1.327 (27 Mar 2023)

Cell contents are missing when the header size is assigned through the e.Size property of the HeaderSizeEventArgs in the HeaderSizeNeeded event handler of RadVirtualGrid.

This happens only for some of the cells and when the viewport has many rows and columns.

To work this around, instead of setting the header size in the HeaderSizeNeeded event handler, use the ColumnWidth property of RadVirtualGrid.

<telerik:RadVirtualGrid ColumnWidth="50" />

Unplanned
Last Updated: 27 Mar 2023 09:35 by Martin Ivanov
Convert the Mask property of GridViewMaskedInputColumn to a DependencyProperty in order to be bindable.
Unplanned
Last Updated: 24 Mar 2023 09:22 by Stenly

The items of the RadComboBox control flicker when scrolling and the Windows 11 theme is applied.

To work this around, a new Style with TargetType="RadComboBoxItem" could be created for the ItemContainerStyle property of RadComboBox. Then, set the BorderBrush and ThemeHelper.MouseOverBrush properties to "#F9F9F9".

xmlns:helpers="clr-namespace:Telerik.Windows.Controls.Theming.Helpers;assembly=Telerik.Windows.Controls"

<telerik:RadComboBox.ItemContainerStyle>
    <Style TargetType="telerik:RadComboBoxItem">
        <Setter Property="helpers:ThemeHelper.MouseOverBrush" Value="#F9F9F9" />
        <Setter Property="BorderBrush" Value="#F9F9F9"/>
    </Style>
</telerik:RadComboBox.ItemContainerStyle>

Duplicated
Last Updated: 23 Mar 2023 17:29 by ADMIN
A specific file cannot be printed with the new engine
Unplanned
Last Updated: 22 Mar 2023 14:35 by Stenly

The DataContext of RadPane's content is lost when showing its preview in the DockingNavigator.

As a workaround, you could set the DataContext of the content element could be set explicitly.

Unplanned
Last Updated: 21 Mar 2023 15:51 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: BreadCrumb
Type: Bug Report
0
The selection in the Breadcrumb is wrong when a history item is clicked. This manifests only when specific steps are executed.
Unplanned
Last Updated: 20 Mar 2023 06:36 by Gabriel
The caret position is incorrect with the custom Gilroy font
Completed
Last Updated: 20 Mar 2023 06:03 by ADMIN
Release LIB 2023.1.320 (20 Mar 2023)

Pixel bug in Lightweight Templates of RadGridView in VisualStudio2013 and Office2013 themes:

No horizontal grid lines when cell has background color:

Most likely bottom margin of PART_CellBorder not set in VisualStudio2013 Theme. In Office2016 PART_CellBorder.Margin="0 0 0 1"

Unplanned
Last Updated: 16 Mar 2023 07:14 by Swapnil
Reverse selection using the mouse starting from the last position in a paragraph before a table will select the first row. This is reproducible in both selection modes (general and advanced selection mode). Note that this is valid only for the mouse selection. When using the keyboard, the selection is correct.
Completed
Last Updated: 16 Mar 2023 05:55 by ADMIN
Release LIB 2023.1.320 (20 Mar 2023)

Single line folding regions is falsely recognized (by default it should be avoided) and messes up with outer regions.
For example
1 [

2 [ inner region]

3]

There should be no folding button on the inner line.  Collapsing line 1 does not collapse 3 but only 1 and 2 which is wrong.

1 2 3 4 5 6