Pending Review
Last Updated: 01 Dec 2023 17:06 by Khalil

Using RadTabbedWindow I noticed difficulty dragging maximized windows between monitors. It seems to happen in multi-monitor environments and only when dragging Left of the PrimaryScreen.

In the video I've included , the blue window is a standard window and can be maximized in one drag across any display.

The white window is RadTabbedWindow and the drag will default to the PrimaryScreen when dragged to the left-most display.

Any help would be appreciated. Thanks

In Development
Last Updated: 01 Dec 2023 15:51 by ADMIN
Select a slot in WeekViewDefinition. Alt + click the last slot on the same row:
Expected - all slots from the first select to the last clicked including should be selected.
Actual: Selection contains only the  first slot plus the slot below it on the next row:


Expected:

In Development
Last Updated: 01 Dec 2023 14:55 by ADMIN
When the Interactive Form Fields are in read-only mode, the user should not be able to change the value of the field. The associated Form Field widgets should not interact with the user, e.g. they should not respond to mouse clicks or change their appearance in response to mouse motions.
In Development
Last Updated: 01 Dec 2023 14:18 by ADMIN
When the TextAlignment is set to right the Filter Icon overlaps the text in the header. 
In Development
Last Updated: 01 Dec 2023 11:19 by ADMIN
A password is asked although adobe opens the document without one
Unplanned
Last Updated: 01 Dec 2023 10:34 by Martin Ivanov

Currently, the RadRibbonTab GetChildrenCore method doesn't create automation peers for the element in the ContentPresenter for the TabStripAdditionalContent.

At this point, you can enable this by creating a custom AutomationPeer that derives from RadGridViewAutomationPeer and override its GetChildrenCore() method. This way you can manually create the peer for the AdditionalTabStripContent. This idea is shown in the attached project.

Unplanned
Last Updated: 01 Dec 2023 07:12 by Derek

Copy/Paste a shape and then an image leads to a wrong result. 

Steps to reproduce: 

1. Copy plain text from a plain text editor onto the clipboard -> Paste in Spreadsheet and the text is pasted OK.
2. Copy the image from another app onto the clipboard -> Paste in Spreadsheet and the "This information cannot be pasted" dialog is displayed.
3. Insert picture from file into spreadsheet -> image displayed in a shape.
4. Select and copy the shape.
5. Repeat step 1 => Copy plain text from a plain text editor onto the clipboard -> Paste in Spreadsheet and the text is pasted OK.
6. Repeat step 2 => Copy image from another app onto clipboard -> Paste in Spreadsheet and shape selected and copied in step 4 is pasted. => Not expected result.
Unplanned
Last Updated: 30 Nov 2023 18:51 by Martin Ivanov
Currently, there are 10px of margin on each side of the FixedDocumentPresenter element showing the page. This is controlled by the PageMargins property of the PagesLayoutManagerBase class, which is set to a fixed value of 10. To change this, you will need to implement custom PagesLayoutManager and few other page presenter classes from scratch. 

Add a property that allows easily changing of the PageMargins value.

At this moment, you can work this around by setting the PageMargins via reflection.
var pageMarginsPropInfo = typeof(PagesLayoutManagerBase).GetField("pageMargins", System.Reflection.BindingFlags.Static | System.Reflection.BindingFlags.NonPublic);
pageMarginsPropInfo.SetValue(null, new Size(0, 0));

Completed
Last Updated: 30 Nov 2023 16:38 by ADMIN
Release R1 2020
ADMIN
Created by: Svetoslav
Comments: 11
Category: Spreadsheet
Type: Feature Request
15
The sheet selector should hide sheets when their visibility is set to hidden or very hidden. The context menu of the sheet selector should contain Hide and Unhide options that allow to hide a sheet or unhide one of the hidden sheets.
Unplanned
Last Updated: 29 Nov 2023 14:34 by Martin Ivanov

The vertical scrolling seems to become very slow and even unresponsive, when the following conditions are met:

  • left and right frozen columns count is 0
  • the summary width of all columns is smaller than the width of the RadGridView element

To minimize the issue, you can set the GroupRenderMode property of RadGridView to Nested.

Unplanned
Last Updated: 29 Nov 2023 08:54 by Srikanth
Memory leak when opening a new window that contains a spreadsheet several times.
Unplanned
Last Updated: 29 Nov 2023 07:02 by Tobias
Created by: Stenly
Comments: 1
Category: GridView
Type: Feature Request
2
Add support for binding to properties of type GUID.
Unplanned
Last Updated: 28 Nov 2023 13:40 by ADMIN
Created by: Stenly
Comments: 2
Category: Map
Type: Bug Report
0
The RadMap control does not display the MBTiles file format.
Unplanned
Last Updated: 28 Nov 2023 12:19 by Mickey

HeaderSizeNeeded is fired twice with the same index and affects the header row width. 

 

Workaround:

int prevIndex = -1;
private void grid_HeaderSizeNeeded(object sender, Telerik.Windows.Controls.VirtualGrid.HeaderSizeEventArgs e)
{ 
    if (e.Index == 0)
    {
        if (prevIndex != -1)
        {
            e.Size = 10;
        }
        else
        {
            e.Size = 100;
        }
    }  

    prevIndex = e.Index;
}

In Development
Last Updated: 28 Nov 2023 11:40 by ADMIN
 Table Properties Dialog. Can't see the number edit field in the Windows 11 Theme.
In Development
Last Updated: 27 Nov 2023 13:05 by ADMIN
Unwanted focus border appears on maximize and minimize buttons in the titlebar for Windows 11 theme.
In Development
Last Updated: 27 Nov 2023 10:11 by ADMIN
Having only a single RadPane in one RadDocking instance will not allow you to drag it into another RadDocking instance, which does not have any elements when both RadDocking instances are under the same drag-drop domain.
In Development
Last Updated: 27 Nov 2023 10:11 by ADMIN
The drag-and-drop logic currently expects the different RadDocking instances to be hosted in one Window element, more specifically, in the MainWindow of the application.

We could add support for different instances being hosted in separate Window elements that will support dragging and dropping operations.
Completed
Last Updated: 27 Nov 2023 06:23 by ADMIN
Release LIB 2023.3.1127 (27 Nov 2023)
This should be similar to the GetContainerForItemOverride method that allows you to replace the auto-generated container of an items control (like ListBox for example). 

The new method should return an AppointmentItem and the developer should be able to use it in order to create a custom implementation of AppointmentItem.

Completed
Last Updated: 27 Nov 2023 06:22 by ADMIN
Release LIB 2023.3.1127 (27 Nov 2023)
The ListId is not removed when it is set inside another style. 
1 2 3 4 5 6