Completed
Last Updated: 04 Apr 2019 13:29 by Dimitar
Release R2 2019 (LIB 2019.1.408)
The issue can be reproduced by setting the AssociatedControl property in the designer and later at run-time.
Completed
Last Updated: 04 Apr 2019 13:53 by Dimitar
Release R2 2019 (LIB 2019.1.408)

ArgumentNullExceptionn in the RadPropertyValuesCollection class.

Completed
Last Updated: 09 Apr 2019 14:17 by Dimitar
Release R2 2019 (LIB 2019.1.415)
Currently, the event arguments do not expose the data item.
Completed
Last Updated: 08 Apr 2019 14:48 by Dimitar
Release R2 2019 (LIB 2019.1.415)

The issue can be reproduced on a touch device after performing zoom in and zoom out

ChartPanZoomController panZoomController = new ChartPanZoomController();
panZoomController.PanZoomMode = ChartPanZoomMode.Both;
this.radChartView1.Controllers.Add(panZoomController);

 


Completed
Last Updated: 21 Mar 2019 15:08 by ADMIN
Release 2019.1.318 (03/18/2019)

The issue can be observed in themes having shadows:

- Material 

- Fluent

Completed
Last Updated: 21 Mar 2019 17:34 by Dimitar

Use attached to reproduce (the orientation must be set at design time)

Workaround:

Set it in code:

commandBarToggleButton2.Orientation = Orientation.Vertical
Unplanned
Last Updated: 25 Feb 2019 11:32 by ADMIN
Using the RadDocumentEditor class, the users can change the margin of the current section. However, there isn't a method allowing them to change the default section margin of the document. 
Unplanned
Last Updated: 22 Feb 2019 12:25 by ADMIN
Use attached to reproduce. 
Unplanned
Last Updated: 21 Feb 2019 13:42 by ADMIN
One should not be able to use the ribbon bar buttons when a protected document is opened or the rich text editor is read-only. 
Unplanned
Last Updated: 17 Apr 2019 09:38 by ADMIN
Caret jumps several symbols to the right when arabic or persian is used and user deletes the dot symbol. As a result the wrong symbol is deleted.
Completed
Last Updated: 21 Mar 2019 17:16 by Dimitar
Other themes are also missing the IsSelected state, the fix should also handle them.
Completed
Last Updated: 27 Feb 2019 09:25 by ADMIN
Created by: Michael Yereniuk
Comments: 1
Category: UI for WinForms
Type: Bug Report
1

To reproduce:

-double click an option in the MultiColumnCombobox editor and close the editor in the selected index changed event.

Unplanned
Last Updated: 09 Mar 2020 06:14 by ADMIN

The performance of the DayView when the control is bound to a large number of recurring appointments and it is grouped by resources needs to be improved.

Completed
Last Updated: 11 Apr 2019 10:20 by Dimitar
Release R2 2019 (LIB 2019.1.415)
Use attached to reproduce.
Completed
Last Updated: 15 Feb 2019 16:46 by ADMIN

AutoCompleteSuggestHelper, Assembly: Telerik.WinControls.UI, Version=2019.1.117.40

 

Isnt the hilighted line (contains branch) very unoptimized.

https://rhale78.wordpress.com/2011/05/16/string-equality-and-performance-in-c/

Multiple ToLower string operation. Why not let the framework do the operation since you are always using ordinal?

optimized version: return item.Text.Contains(this.Filter, StringComparison.OrdinalIgnoreCase);


 

protected virtual bool DefaultFilter(RadListDataItem item)
    {
      switch (this.suggestMode)
      {
        case SuggestMode.StartWiths:
          return item.Text.StartsWith(this.Filter, this.StringComparison);
        case SuggestMode.Contains:
          if ((this.StringComparison & StringComparison.InvariantCultureIgnoreCase) == StringComparison.InvariantCultureIgnoreCase || (this.StringComparison & StringComparison.InvariantCultureIgnoreCase) == StringComparison.CurrentCultureIgnoreCase)
            return item.Text.ToLower().Contains(this.Filter.ToLower());
          return item.Text.Contains(this.Filter);
        default:
          return item.Text.StartsWith(this.Filter, this.StringComparison);
      }
    }

 

Completed
Last Updated: 15 Feb 2019 16:50 by ADMIN
Unplanned
Last Updated: 11 Feb 2019 08:00 by ADMIN

To reproduce:

Copy an image and paste is several times inside the document.

Completed
Last Updated: 08 Feb 2019 13:11 by Ioannis
Created by: Ioannis
Comments: 2
Category: UI for WinForms
Type: Bug Report
1

To reproduce:

- Open the Print Preview dialog and select "Print Entire Workbook"

- Nothing happens and only the current sheet is printed

Completed
Last Updated: 22 Jul 2019 14:50 by ADMIN
Release R3 2019 (LIB 2019.2.729)

Workaround:

private void RadDropDownButton1_DropDownOpening(object sender, EventArgs e)
{
    var args = e as RadPopupOpeningEventArgs;
    var popupSize = radDropDownButton1.DropDownButtonElement.DropDownMenu.Size;
    var x = args.CustomLocation.X - (popupSize.Width - radDropDownButton1.Width);
    args.CustomLocation = new Point(x, args.CustomLocation.Y);
}

Unplanned
Last Updated: 24 May 2019 08:29 by ADMIN
Created by: n/a
Comments: 6
Category: UI for WinForms
Type: Feature Request
1
The new series will be similar to the RadarColumnSeries which is already available. https://docs.telerik.com/devtools/aspnet-ajax/controls/htmlchart/chart-types/polar-chart