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.

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
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);
}

Completed
Last Updated: 28 May 2019 16:00 by ADMIN
Release R2 2019 SP1 (LIB 2019.2.527)

Steps to reproduce:

1) Add a RadForm with 3 buttons. Apply Fluent Theme to all.

2) In the click handler of the first two buttons, set enable to false for the button that was clicked. Third button, do nothing.

3) Run app. Click all 3 buttons.

 

Desired Result:

Focus indicator should be hidden for previous-focused but now-disabled controls.

 

Actual Result:

Blue Fluent focus-indicator border is still showing (my user's are confused and complaining), see attachment.

[May happen on other themes too, didn't check.]

 

Had to implement a work-around...

 

Work around: 

Set border element to off for every programmatically disabled control: this.radButton1.ButtonElement.BorderElement.Visibility = ElementVisibility.Hidden;

Completed
Last Updated: 16 May 2019 05:59 by ADMIN
Created by: atfats
Comments: 1
Category: UI for WinForms
Type: Bug Report
0
 Hi. I try to resolve the problem as u describe but Still having the same error msg Any other solution
Completed
Last Updated: 21 Mar 2019 17:27 by Dimitar
Workaround: additionally call the Select method of the text box element

Private Sub RadPageView1_SelectedPageChanged(sender As Object, e As EventArgs)
    If Me.RadPageView1.SelectedPage Is Me.RadPageViewPage1 Then
        Me.RadTextBoxControl1.Select()
        Me.RadTextBoxControl1.TextBoxElement.Select(0, 0)
    End If
End Sub
Completed
Last Updated: 05 May 2021 12:57 by ADMIN
Release R2 2021
Created by: n/a
Comments: 4
Category: UI for WinForms
Type: Feature Request
13
Add Office 2016 theme to the WinForms suite.
Completed
Last Updated: 16 May 2019 05:58 by ADMIN
RE: Bug Report ID:1385123 -- when upgrading from r3 sp1 2018 to r1 2019 using vb.net 2012 i received an error
Completed
Last Updated: 14 Feb 2019 16:37 by ADMIN

To reproduce:

Add page view with some pages.

Add a scrollable panel with some labels on the page.

The labels have different BackColor 

Workaround:

 radScrollablePanel1.PanelElement.Fill.BackColor = Color.FromArgb(245, 246, 247);
 //or
 radScrollablePanel1.BackColor = Color.FromArgb(239, 239, 239);

Completed
Last Updated: 14 Feb 2019 18:28 by Al

To reproduce:

Add a RadBindingNavigator to a form and change its name.

Bind it to something.

Workaround:

Leave the default name.

Completed
Last Updated: 06 Feb 2019 11:32 by ADMIN
Created by: Gianluca Mariani
Comments: 6
Category: UI for WinForms
Type: Bug Report
1

Hello,

I have a very simple form that has this code:

 

public partial class RadForm1 : Telerik.WinControls.UI.RadForm
{
    public RadForm1()
    {
        InitializeComponent();
 
        ThemeResolutionService.ApplicationThemeName = "Fluent";
    }
 
    private void radButton1_Click(object sender, EventArgs e)
    {
        SetStartForm(false);
    }
 
    private void SetStartForm(bool visible)
    {
        this.radGroupBox1.Visible = visible;
    }
 
    private void radButton2_Click(object sender, EventArgs e)
    {
        SetStartForm(true);
    }
}

 

At the start it call the SetStartForm() method that with a lot of other things hide the groupbox.

Well after a search when a user click again the button "Nuova Ricerca" I call again SetStartForm() but the components rendering remain with the border. Please see the video:

//video has been deleted due to sensitive data.

How can I solve that? Thanks

Completed
Last Updated: 14 Feb 2019 16:46 by ADMIN

To reproduce:

See the attached video.

Completed
Last Updated: 06 Feb 2019 12:02 by ADMIN

To reproduce:

- add a drop-down list to a form and set the AutoCompleteMode to suggest

- set the theme to Fluent

- the drop-down list is higher than the other editor

Completed
Last Updated: 11 Apr 2019 10:19 by Dimitar
Release R2 2019 (LIB 2019.1.415)
Completed
Last Updated: 19 Feb 2019 14:07 by ADMIN
This will handle the scenario of having different image sets for different DPI.
Completed
Last Updated: 11 Jan 2021 13:32 by ADMIN
Release R1 2021
1. to enter edit text box I have to click the mouse twice. first click in the area of the text box, second start edit

2. entering or living acro control cause all document to refresh (blinking effect)
Completed
Last Updated: 19 Feb 2019 14:12 by ADMIN

To reproduce: 

-Open the FileExplorer example. 

- Resize the panel (see attached).