Unplanned
Last Updated: 01 Jul 2025 10:01 by Martin Ivanov

Currently, the delimiter is hardcoded to ",". Add a setting that allows changing this and also synchronizing it with the current culture of the system.

Unplanned
Last Updated: 26 Jun 2025 08:38 by Access
Provide text formatting options while typing in the chat textbox. The formatted text should be properly visualized as well. 
Unplanned
Last Updated: 23 Jun 2025 09:23 by Martin Ivanov
Currently, the QueryableEntityCoreCollectionView<T> class forces you to have an empty/parameterless constructor for the T type. This allows easier creation of the items at runtime. However, in some situations it makes sense to allow classes with only constructors with parameters. Such scenario is when following the DDD (Domain-Driven Design) pattern where it is strongly adviced to avoid having empty constructor in your entity classes.
Unplanned
Last Updated: 17 Jun 2025 07:55 by ADMIN
ADMIN
Created by: Tanya
Comments: 12
Category: UI for WPF
Type: Feature Request
35
Enable the customers to create and modify .pptx (PowerPoint) files . They need processing as well as showing such documents.
Unplanned
Last Updated: 11 Jun 2025 07:23 by Stefan
Expose API that allows you to add/remove Annotations/IPointerHandler implementations from the PointerHandlersController.
Unplanned
Last Updated: 04 Jun 2025 14:42 by Stenly
Created by: Stenly
Comments: 0
Category: RichTextBox
Type: Feature Request
1
Currently, the RadRichTextBox supports only the MS Pinyin. We could add support for QQ Pinyin.
Unplanned
Last Updated: 04 Jun 2025 11:52 by Stenly
Currently, when pressing the "More Sorting Options..." menu item to customize the sorting, a new SortingEditor dialog is created each time. For its ViewModel property, a new SortingOptionsViewModel instance is created. There isn't an option to persist the customization that the client has performed previously when reopening the dialog, so we could add such an option.
Unplanned
Last Updated: 03 Jun 2025 09:32 by Martin Ivanov
Currently, RadPdfViewer doesn't allow you to render notes/comments added to the highlight annotations. Add the option to render this and possibly allow editing. 
Unplanned
Last Updated: 26 May 2025 18:34 by ADMIN
ADMIN
Created by: Kalin
Comments: 6
Category: ComboBox
Type: Feature Request
10
Currently filtering with virtualized RadComboBox is not supported as the filtering feature works with the containers (changes their Visibility).
Unplanned
Last Updated: 20 May 2025 07:17 by Martin Ivanov

Currently, if you create a custom DraggingService of RadDiagram and override the drag methods (StartDrag, Dragging, etc.), the corresponding drag events stop reporting if you don't call the base method implementation. Add protected methods like OnDragging and OnStartDrag that raise the corresponding events. This will allow the developer to manually raise the events if the drag method overrides are implemented from scratch, without calling the base implementation.

In the meantime, you can use custom events like so:

public class CustomDraggingService : DraggingService
{
    public event EventHandler<PositionChangedEventArgs> CustomDraggingEvent;


    public CustomDraggingService(IGraphInternal graph) : base(graph)
    {
    }

    public override void Drag(Point newPoint)
    {
        CustomDraggingEvent?.Invoke(this, new PositionChangedEventArgs(new Point(), newPoint, null));
// custom implementation here
    }
}

Unplanned
Last Updated: 16 May 2025 06:18 by Jonas
Introduce support for sorting columns that contain merged cells. 
Unplanned
Last Updated: 15 May 2025 11:01 by Stenly
Currently, registering custom mask tokens is done via the TokenLocator.AddCustomValidationRule static method, which will affect all instances. We could add an option to set custom tokens on a specific instance only.
Unplanned
Last Updated: 14 May 2025 12:52 by Stenly
Add an auto-scrolling functionality when selecting slots.
Unplanned
Last Updated: 13 May 2025 12:52 by Martin Ivanov
The label text is automatically fetched from the property name or manually set via the DisplayName property of the PropertyDefinition object. Currently, the property name is displayed in a TextBlock control. Add a mechanism to allow changing the label UI. For example, by providing a DataTemplate via a property of RadPropertyGrid or of the PropertyDefinition. 
Unplanned
Last Updated: 09 May 2025 13:31 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: VirtualGrid
Type: Feature Request
0
Expose a MemberName property that gets the memberName value assigned in the ColumnSortDescriptor's constructor. At first sight it seems that the option should be read-only, but we can explore the options to allow setting it as well.
Unplanned
Last Updated: 29 Apr 2025 06:39 by ADMIN

The current implementation of the Code128 symbology class used with RadBarcode throws an InvalidSymbolException for characters with codes greater than 127.

As you can see from this table, there are many special characters in Code128 that have larger codes:

https://en.wikipedia.org/wiki/Code_128#Bar_code_widths

It would be useful to have these in applications which need to modify a reader device's behavior with barcode control characters in order to communicate properly.

Unplanned
Last Updated: 28 Apr 2025 14:20 by Nikola
Created by: Nikola
Comments: 0
Category: UI for WPF
Type: Feature Request
0

Currently SvgImage does not support the following inner animation:

 

<svg xmlns="http://www.w3.org/2000/svg"
className="linesBox"
viewBox="0 0 4325 2626"
width="1200"
height="800"
        >
<path
d="m 2806,792.50001 -13.5,16.5 -33,10 -19.5,6.5 -17,15.5 -19,1 -9,16 -29.5,-4.70812 -34,18.70812 -37.5,16 -1.5,18 -20.5,8"
id="path60"
fill="none"
stroke="blue"
stroke-dasharray="20 10"
    stroke-dashoffset="0"
stroke-width="4">
<animate attributeName="stroke-dashoffset"
from="0" to="30"
dur="3s"
repeatCount="indefinite"/>
</path>

</svg>
Unplanned
Last Updated: 28 Apr 2025 14:18 by Nikola
Created by: Nikola
Comments: 0
Category: UI for WPF
Type: Feature Request
0
Currently only 'Rotate' is supported.
Add support for the rest : 'translate', 'scale', 'skewx', 'skewy'
Unplanned
Last Updated: 25 Apr 2025 13:12 by Stenly
Currently, when an item is selected and the RadWatermarkTextBox (search box) is focused, pressing the Back or Delete key will remove the selected item. This logic is encapsulated, and it cannot be altered. We could add an option to control this behavior.
Unplanned
Last Updated: 15 Apr 2025 09:26 by Martin Ivanov
Add the option for the user to be able to double click on the resize handle displayed when the mouse is between two headers. On double click, the associated column should auto-resize so that its width fits the header text's length.

This feature is available in RadGridView for WPF.
1 2 3 4 5 6