Unplanned
Last Updated: 26 Jul 2024 08:57 by ADMIN
Created by: santhosh
Comments: 4
Category: ToolBar
Type: Feature Request
2
 Introduce support for key tips.
Unplanned
Last Updated: 24 Jul 2024 12:51 by ADMIN
ADMIN
Created by: Nikolay Demirev
Comments: 2
Category: PDFViewer
Type: Feature Request
3
The default WPF PrintDialog cannot print asynchronously when it is shown in UI. However, you may see the demo in this forum post showing how to create custom PrintDialog and perform async printing with it:
http://www.telerik.com/forums/pdfviewer-print-makes-ui-unresponsive#js0YdzFWc0Oa8C3g6a18lg
In Development
Last Updated: 23 Jul 2024 12:38 by ADMIN
We could add an option to group the dates in the FilteringControl similar to how Excel groups them.
Unplanned
Last Updated: 15 Jul 2024 10:08 by Stenly
Currently, when a RadListBoxItem container is selected it will be highlighted and scrolled to, which causes the ScrollViewer to "auto-scroll". We could add option to enable/disable this scrolling behavior.
Unplanned
Last Updated: 11 Jul 2024 15:58 by Stenly
Currently, the Save button of the RadPdfViewerToolBar element raises the SaveAsPdfDocumentCommand, which opens a new SaveFileDialog in its Execute method. We could raise an event there, in order for this action to be intercepted if the PDF file is saved.
Unplanned
Last Updated: 10 Jul 2024 08:55 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: UI for WPF
Type: Feature Request
0
Add a ComboBox control with hierarchical items structure like in RadTreeView.
Unplanned
Last Updated: 05 Jul 2024 10:17 by Martin Ivanov
The feature needs to cover functionality as follows: The logarithmic axis has an exponent step (1, 10, 100, 1000) and the current ticks support of the axis only plots evenly distributed ticks. Clients, however, sometimes need to display unevenly distributed ticks (1, 2, 3, 4, 5, 6, 7, 8, 9, 10, and so on).
Unplanned
Last Updated: 05 Jul 2024 07:23 by David
Add the ability to add new items in the collection editor when binding to primitive types.
Need More Info
Last Updated: 04 Jul 2024 09:16 by ADMIN

Currently PropertyDefinitions have only one Property for DataBinding, which is very strange solution.

All these instances are DependencyObject, but at the same time they are not in the visual tree and we could not bind to a visibility or to readonly or to any other property without some starnge sorkarounds (why this was designed in this way?).

This makes these objects almost useless. becuae we cannot fully use them in an MVVM way (bindings, multiibindings, etc.)

Possible solutions:

  1. provide bindings for all properties to make them be bindable withput any workarounds
  2. Change PropertyDefinitions to something that will live inside visual tree.

 

In Development
Last Updated: 04 Jul 2024 07:25 by ADMIN
Currently, the RadMultiColumnComboBox control does not support the ValidationErrorTemplateHelper.DisplayMode attached property. We could add support for it.
Unplanned
Last Updated: 03 Jul 2024 07:29 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: PropertyGrid
Type: Feature Request
0
Add a Visibility DependencyProperty (to support data binding) to the GroupDefinition class. The same setting is available in the PropertyDefinition objects and it affects the property fields in the UI. The Visibility of the GroupDefinitions should hide/show the entire group along with all its child property fields.

The GroupDefinition Visibility should not update the Visibility of the child PropertyDefinition objects. Both properties should work independent.
Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)

Please add an option to modify the corner radius for TrackBackground and UncheckedTrackBackground in the RadToggleSwitchButton template.

The radius of both rectangles is hard-coded to 9 (TrackBackground)  / 12 (UncheckedTrackbackground) (Why are they different btw?). While it is possible to set the TrackHeight and TrackWidth to custom values, this doesn't really work well for the Fluent theme right now due to the radii quickly becoming disproportionally large or small compared to the TrackHeight. This results in the control losing its shape and becoming more and more egg-shaped or rectangular, depending on whether you decrease or increase the TrackHeight.

Ideally, the Radii would be automatically computed, depending on the selected TrackHeight (Floor(TrackHeight/2) ?), however, a manual solution would also be a lot better than nothing. That way we could at lease define proportionally matching values via styles.

<Grid Grid.Column="1" SnapsToDevicePixels="True" Height="{TemplateBinding TrackHeight}">
                            <Rectangle x:Name="TrackBackground" RadiusX="12" RadiusY="12" Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" Opacity="0" StrokeThickness="{TemplateBinding BorderThickness}" />
                            <Rectangle x:Name="UncheckedTrackBackground" RadiusX="9" RadiusY="9" Fill="{StaticResource MainBrush}" Stroke="{StaticResource BasicBrush}" StrokeThickness="{TemplateBinding BorderThickness}" />
                            <Ellipse x:Name="PART_Thumb" Fill="{StaticResource MarkerInvertedBrush}" Width="{TemplateBinding ThumbWidth}" Height="{TemplateBinding ThumbHeight}"
                                     HorizontalAlignment="Left" RenderTransformOrigin="0.5,0.5" Margin="6 0">
                                <Ellipse.RenderTransform>
                                    <TranslateTransform X="0" Y="0" />
                                </Ellipse.RenderTransform>
                            </Ellipse>
                        </Grid>

Completed
Last Updated: 01 Jul 2024 11:22 by ADMIN
Release 2024.2.701 (Preview)
 Form XObject that contains path with a Matrix position is not rendered.
Unplanned
Last Updated: 27 Jun 2024 13:04 by Martin Ivanov

Currently, when you cancel the Filtering event the field filter (displayed when FilteringMode="FilterRow") will clear any entered text and the funnel icon won't change its color (like when the filter is active). Add an option in the Filtering event, similar to the Sorting event which allows you to manually set the sorting state of the column which will affect the UI (showing and changing the sort indicator icon).

In the case with the Filtering event, there should be an option if the funnel icon should be highlighted. In other words the setting should allow you to manually say if the filter is active or not. Also, the input text in the field filter should be preserved and possible an option to change this value may be added in the event arguments. This will allow you to implement custom filtering and keep the UI state of the field filter.

Completed
Last Updated: 26 Jun 2024 08:31 by ADMIN
Release R2 2020
Currently the CurrentTimeIndicator is shown under the appointments when its position is set to WholeArea. Add an option to change this and display the indicator on top of the appointments.
Unplanned
Last Updated: 25 Jun 2024 10:42 by Martin Ivanov

Currently the MouseWheel event used to zoom is not handled which means that the event will bubble to the parent elements which can lead to scrolling issues. Add an option to handle the MouseWheel event when the chart zooming is enabled.

To get the desired result, you can handle the MouseWheel event of the chart manually.

 private void RadCartesianChart_MouseWheel(object sender, MouseWheelEventArgs e)
 {
     e.Handled = true;
 }

Unplanned
Last Updated: 20 Jun 2024 09:41 by Martin Ivanov
Currently, if you have multiple tabs and the scrolling in the tabstirp area gets enabled, you can scroll using the mouse wheel. However, there is no behavior that handles the swipe gesture on touch devices (which is the alternative to the mouse wheel action). 
Add swipe scrolling support.
Unplanned
Last Updated: 20 Jun 2024 08:49 by Robby
Add support for digital signature in the XLSX format.
Unplanned
Last Updated: 18 Jun 2024 11:10 by Martin Ivanov
The QueryableDataServiceCollectionView uses the Microsoft.OData.Client.DataServiceCollection internally, but intialized it with its default TrackingMode which is AutoChangeTracking. Add an option to allow setting the TrackingMode via the QueryableDataServiceCollectionView object and transfer this value to the DataServiceCollection. You can do that in the constructor of the QueryableDataServiceCollectionView. 
Unplanned
Last Updated: 11 Jun 2024 07:32 by Martin Ivanov
Raise the PropertyChanged event for the IsInToolWindow property of RadPaneGroup. Consider doing this also for the other elements that expose this property.
This is useful when you need to know when the group is moved in and out of ToolWindow. For example, when using triggers or data bindings to customize the behavior of the group.
1 2 3 4 5 6