Unplanned
Last Updated: 05 Dec 2023 16:01 by ADMIN
Created by: Stenly
Comments: 2
Category: GridView
Type: Feature Request
2
Add support for binding to properties of type GUID.
Unplanned
Last Updated: 04 Dec 2023 12:52 by Martin Ivanov
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).
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: 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: 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: 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.

Unplanned
Last Updated: 24 Nov 2023 12:17 by Stenly
Currently, information about the selected slots for one day can be retrieved when deriving from the SlotSelectionBehavior class or via the SelectedSlot property. We could include a way to provide information about the selected slots for more than one day.
Unplanned
Last Updated: 23 Nov 2023 07:10 by Piotr
Created by: Piotr
Comments: 0
Category: WatermarkTextBox
Type: Feature Request
1
Add support for RadWatermarkTextBox.
Unplanned
Last Updated: 22 Nov 2023 15:11 by ADMIN
When a property change happens in an item of the ItemsSource of RadCardView, automatically refresh the grouping and the filtered data.
Unplanned
Last Updated: 22 Nov 2023 14:33 by Richard
Created by: Petar
Comments: 4
Category: SyntaxEditor
Type: Feature Request
11
Add dependency property for showing/hiding the line numbers on the left of the source code.
Unplanned
Last Updated: 21 Nov 2023 09:40 by Stenly

Add an option to modify the StartPoint and EndPoint properties of RadDiagramConnection instances via the SettingsPane.

 

This functionality can be achieved by modifying the default ControlTemplate of the SettingsPaneView element to include an additional RadTabItem instance in the RadTabControl element. In the additional RadTabItem, input controls can be used, such as the RadNumericUpDown element. These elements should modify properties that will be present in a custom LinkViewModelBase<NodeViewModelBase>> class. More specifically, the X and Y properties of the StartPoint and EndPoint properties of the RadDiagramConnection element.

The attached sample project shows the implementation of the above approach for achieving this requirement.

Unplanned
Last Updated: 20 Nov 2023 16:38 by Stenly

Add an option to customize the available colors in the SettingsPane control:

Unplanned
Last Updated: 20 Nov 2023 11:45 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: TaskBoard
Type: Feature Request
0

The new button should be placed in the column container under the tasks/cards and it should add a new task.

This feature is the same as the "Add a card" button in RadTaskBoard for WinForms.
https://docs.telerik.com/devtools/winforms/controls/task-board/task-board-adding-task-cards

 

 

Unplanned
Last Updated: 20 Nov 2023 11:41 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: TaskBoard
Type: Feature Request
0
Add built-in editing support for the tasks in RadTaskBoard.
Unplanned
Last Updated: 20 Nov 2023 11:11 by Vladimir
Introduce the option for snapping connections while they are being drawn. 
Unplanned
Last Updated: 17 Nov 2023 08:04 by Philipp
Add properties that control the visibility of the different elements in the ExplorerControl. Those are:
  • the address bar where you enter the directory
  • the search bar at the top right corner of the window
  • the main pane, where the folders and files are displayed
  • the navigation treeview at the left side of the control
  • the new folder button
  • the layout combobox


Unplanned
Last Updated: 16 Nov 2023 15:17 by Martin Ivanov
By default when the chart is zoomed in, the major step between the axis ticks is automatically re-calculated to match the new zoom level. Add a property that allows you to access the recalculated major step.
Unplanned
Last Updated: 14 Nov 2023 09:45 by Joe
Add a way to save the Filter/Sort/Group descriptors to a string or a file. 
1 2 3 4 5 6