Unplanned
Last Updated: 19 Apr 2024 05:32 by Divya
Vertical and horizontal scroll bar moves too fast once outside of the Viewport and one is dragging the selection.
Unplanned
Last Updated: 19 Apr 2024 07:14 by ADMIN
RadMap control has an interesting feature in which, while zooming in, if no data is available for a zoom level, the last available image of a lower zoom level is used (scaled up to match the geographical bounds of the image). It would be really useful if the feature was available also while zooming out, allowing users to not have to have data for all zoom levels when using a custom offline provider.
Unplanned
Last Updated: 17 Apr 2024 07:23 by Martin Ivanov
Created by: Martin Ivanov
Comments: 0
Category: VirtualKeyboard
Type: Feature Request
0
Add an event on the RadVirtualKeyboard class that is raised when a key button is pressed. For example, KeyPressed or something like this. 
Unplanned
Last Updated: 15 Apr 2024 09:00 by Wolfgang
Provide option to set if the grouping is case-sensitive
Unplanned
Last Updated: 09 Apr 2024 13:43 by Martin Ivanov

Make the following selection-related methods of the HeatMapDefinition class "protected internal virtual" instead of "internal virtual". 

  • IsCellSelected
  • IsRowSelected
  • IsColumnSelected

This will allow the developer to properly implement also the selection feature in their custom heat map definition code.

Unplanned
Last Updated: 08 Apr 2024 10:36 by Stenly
Add NoResultsContent and NoResultsContentTemplate properties to the RadMultiColumnComboBox control. 
Unplanned
Last Updated: 08 Apr 2024 10:23 by Stenly
Add NoResultsContent and NoResultsContentTemplate properties to the RadComboBox control. 
Unplanned
Last Updated: 03 Apr 2024 12:54 by Stenly
Currently, the width of the category indicator for each item is a fixed size, depending on the design of each theme. Include an API for changing this value.
Unplanned
Last Updated: 09 Apr 2024 13:21 by Divya
 RadSpreadsheetSheetSelector add options for disabling the reordering and the editing of the sheets 
Unplanned
Last Updated: 11 Apr 2024 05:30 by ADMIN
Introduce a way to set the modifier key used for multi-column sorting.
Unplanned
Last Updated: 28 Mar 2024 12:00 by Steven
LayoutControl uses XamlWriter.Save/XamlReader.Load when custom items/controls are added in its toolbox.
For example:
 LayoutControlHierarchicalNodeProxy radGridToolBoxProxy = new LayoutControlHierarchicalNodeProxy();
 radGridToolBoxProxy.Header = "RadGrid";
 radGridToolBoxProxy.OriginalItemType = typeof(RadGridView);
 radGridToolBoxProxy.OriginalItem = new RadGridView() { };

 this.toolBoxView.NewItems.Add(radGridToolBoxProxy);

OnDrop in LayoutControl, internally a deep copy is created of the object via XamlWriter.Save and  XamlReader.Load. but this has lots of limitations and not every custom control can be successfully restored.

Add event or other API so that user can have control of the creation of the element when drag drop from toolbos is performed.
Unplanned
Last Updated: 22 Mar 2024 09:20 by Stenly
Created by: Stenly
Comments: 0
Category: FileDialogs
Type: Feature Request
1
Add rectangle selection in multiple/extended selection mode just like in Windows Explorer.
Completed
Last Updated: 08 Apr 2024 14:24 by ADMIN
Release 2024.1.408
Make the MoveSelectionCommandParameter class public so one can easily access its parameters. 
Unplanned
Last Updated: 15 Mar 2024 09:51 by Ben

Add input rules and character count limit to the text box: 

 

1. There is no input mask, although the expected pattern is AARRGGBB.
2. Arbitrary and invalid characters can be input (#, +, %, Z, ...).
3. Invalid input is parsed to FF000000, but there is no indication that the input is wrong.
4. Shorter valid sequences, e.g. AB, are parsed, but to FFAB0000, instead of AB000000, which seems unintuitive.
5. Longer sequences exceeding the pattern can be input, although invalid.
6. Entering longer sequences leads to the expansion of the input box even beyond the bounds of the control 
Unplanned
Last Updated: 13 Mar 2024 13:07 by Martin Ivanov
Currently, the there are two frames that happen on property changed that cause the blink. On the first frame, the labels are cleared and the cells are drawn. On the next frame, the labels measure/arrange phase catch up with the cells image drawing and the control is rendered again. Because of this when a cell value is changing at a fast rate (in a timer or similar) and redrawing of the cells is required, a blinking of all texts in the control can be observed.
Unplanned
Last Updated: 07 Mar 2024 16:26 by Martin Ivanov
Currently, the categories in the CategoricalAxis are ordered by the order of their appearance in the plotted data. Allow ordering the categories manually.
Unplanned
Last Updated: 04 Mar 2024 07:54 by Martin Ivanov
Add an API in the chart spline series (like a method override or similar) that allows you to calculate your own set of additional points that render the spline in the chart's spline series.
Unplanned
Last Updated: 29 Feb 2024 12:10 by Premkumar
Implement auto complete for ListDataValidationRule like in Excel.
Unplanned
Last Updated: 26 Feb 2024 12:32 by Stenly
Created by: Stenly
Comments: 0
Category: WatermarkTextBox
Type: Feature Request
1

The RadWatermarkTextBox control updates the position of the floating label when it gets/loses focus. This moves the label to the center or to the top based on whether the control is focused or is losing the focus. This is done via a method that is currently private. 

We can expose the method so that it can be used based on the client's logic.

Currently, the method can be invoked as follows:

Type radWatermarkTextBoxType = typeof(RadWatermarkTextBox);

MethodInfo handleLabelStateChangeMethodInfo = radWatermarkTextBoxType.GetMethod("HandleLabelStateChange", BindingFlags.NonPublic | BindingFlags.Instance);

if (handleLabelStateChangeMethodInfo != null)
{
    handleLabelStateChangeMethodInfo.Invoke(this.radWatermarkTextBoxInstance, new object[1] { false });
}

Unplanned
Last Updated: 20 Feb 2024 07:36 by Premkumar
Provide a way so one can change the default cell editor with a custom one.
1 2 3 4 5 6