Unplanned
Last Updated: 22 Nov 2024 14:57 by Chao
Created by: Martin Ivanov
Comments: 3
Category: ImageEditor
Type: Feature Request
5

Currently, on each change of the image, a new instance of the image is stored in the undo/redo stack. This means that the memory grows very fast. Especially, in a scenario with big images.

Create a smarter undo/redo mechanisms that saves only the applied change in the image.

Unplanned
Last Updated: 22 Nov 2024 06:53 by Niklas
GridView: Context Menu Opens at Incorrect Position via Keyboard Shortcut.
Unplanned
Last Updated: 21 Nov 2024 12:02 by Stenly
Currently, the order of the GroupDefinitions will be based on the OrderIndex of the PropertyDefinitions, which means that in order to reorder the groups, you will have to order the PropertyDefinitions.

The GroupDefinition class exposes the DisplayIndex property, which we can review and improve its functionality to allow the user to directly order the groups based on it.
Unplanned
Last Updated: 21 Nov 2024 08:02 by Dimitar
Wrong color of lines due to Matrix Transformations applied to the Drawing.
Unplanned
Last Updated: 19 Nov 2024 11:00 by Martin Ivanov
Currently, you can use the BackgroundGrid attached properties to customize the grid lines. However, the settings are applied to all lines, regardless their orientation - horizontal or vertical. Add different options for the different orientations. For example, instead of BackgroundGrid.LineStroke to have BackgroundGrid.HorizontalLinesStroke and BackgroundGrid.VerticalLinesStroke, or similar.
Unplanned
Last Updated: 19 Nov 2024 07:47 by Thomas
PdfViewer: Invalid rendering with German culture (Regression). Some text is missing and the rendering is broken.
Unplanned
Last Updated: 18 Nov 2024 17:28 by Martin Ivanov
Add a property that determines if the check digit (checksum) should be displayed. Currently, you can enable a checksum calculation that is displayed in the barcode image by setting the AutoChecksum property of the symbology to True, but there is no way to display the calculated value in the text under the barcode.
Unplanned
Last Updated: 18 Nov 2024 11:09 by Martin Ivanov
Currently, the trackball info element is aligned with the top of the plot area of the chart and it is centered to the trackball line. Add an option that makes the trackabll info floating next to the closest snapped data point.
Unplanned
Last Updated: 15 Nov 2024 07:12 by ADMIN
The text is not committed and is still in edit mode when the control loses focus. The partial commit of content is not working as well.
Unplanned
Last Updated: 13 Nov 2024 05:26 by ADMIN

Improve the load time when the ribbon UI is used.

 

Unplanned
Last Updated: 12 Nov 2024 09:50 by Martin Ivanov

Currently, the Telerik.Pivot.DataProviders.Adomd project relies on that the Microsoft.AnalysisServices.AdomdClient dll is installed in the GAC. The dll is installed with the ADOMD feature package that come with the SQL Server installation. If the required SQL Server feature is not installed on the machine, the Microsoft.AnalysisServices.AdomdClient.dll is missing from the GAC and the installation of the Telerik.Pivot.DataProviders.Adomd.for.Wpf package fails with an error. The error is:

Failed to add reference. The package 'Telerik.Pivot.DataProviders.Adomd.for.Wpf.Xaml' tried to add a framework reference to 'Microsoft.AnalysisServices.AdomdClient' which was not found in the GAC. This is possibly a bug in the package. Please contact the package owners for assistance.

Add a dependency to the Microsoft.AnalysisServices.AdomdClient package, instead of relying on the dll installed in the GAC.

Unplanned
Last Updated: 05 Nov 2024 13:35 by Martin Ivanov

The Clear Filters option in the FieldFilterControl cannot be selected when the DefaultOperator1 is set in the FilterOperatorsLoading event of RadGridView. The FieldFilterControl is the element shown under the column header when the FilteringMode property of RadGridView is set to FilterRow. Setting e.DefaulteOperator1 in the FilterOperatorsLoading properly selects the corresponding filter in the drop down, but after that you cannot select Clear Filters when clicking on this option.

To work this around, you can use the CellLoaded event instead of FilterOperatorsLoading. This will allow you to get the FieldFilterControlViewModel and set its SelectedOperatorViewModel property.

private void manualGridView_CellLoaded(object sender, CellEventArgs e)
{
    if (e.Cell is GridViewHeaderCell && e.Cell.Column.UniqueName == "MyColumn")
    {
        Dispatcher.BeginInvoke(new Action(() =>
        {
            var fieldFilter = e.Cell.FindChildByType<FieldFilterControl>();
            var viewModel = (FieldFilterControlViewModel)fieldFilter.DataContext;
            viewModel.SelectedOperatorViewModel = viewModel.AvailableOperatorViewModels.FirstOrDefault(x => x.FilterOperator == FilterOperator.IsLessThan);
        }));
    }
}

Unplanned
Last Updated: 04 Nov 2024 17:15 by Roberto
ADMIN
Created by: Stefan Nenchev
Comments: 2
Category: Wizard
Type: Feature Request
7

			
Unplanned
Last Updated: 04 Nov 2024 16:07 by Stenly

When using the RadToggleSwitchButton and the CheckedContent and UncheckedContent properties are not utilized, in some themes, the on and off states cannot be correctly distinguished. For example, the track or the thumb does not indicate whether the button is checked or not.

Themes, in which this is present are the following ones:

  • Material
  • Office2013
  • Windows8 and Windows8Touch
  • OfficeBlack, OfficeBlue, and OfficeSilver 
Unplanned
Last Updated: 01 Nov 2024 09:13 by Dariush
Created by: Dariush
Comments: 0
Category: SyntaxEditor
Type: Feature Request
1
Add spellcheck as you type feature.
Unplanned
Last Updated: 28 Oct 2024 10:31 by Vladimir
When the EditorFontFamily is set to SegoeUI the RadSyntaxEditor can be placed over letters when changing it position.
Unplanned
Last Updated: 25 Oct 2024 12:16 by Sasidhar

Add information about the selection in the SelectionChanged event arguments. 

- We need to differentiate from mouse event to keyboard event. But since the EventArgs is empty we are not able to differentiate.

Unplanned
Last Updated: 24 Oct 2024 14:14 by Stenly
Currently, there isn't a possibility to cancel the creation of labels for certain data points, as it is on the level of the series via the ShowLabels property. We could introduce an option to control this on the level of the data points.
Unplanned
Last Updated: 24 Oct 2024 11:54 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: DateRangePicker
Type: Feature Request
1
Currently, you can select a single day, but this will set the StartDate to the selected date and EndDate to null. Add option to enable a selection range of a single day, where StartDate == EndDate. 
At the moment, you can do that by programmatically setting the StartEnd and EndDate properties, or by editing the values in the text input, but this cannot be done via the UI. 
Also, when StartDate == EndDate, a click on another date in the calendar continues the selection, instead of starting a new selection range. In this situation, a new selection should be started when another date is clicked.
Unplanned
Last Updated: 24 Oct 2024 10:33 by Stenly
Not all cells that contain the searched word are displayed when searching columns that are bound to enum properties.
1 2 3 4 5 6