Unplanned
Last Updated: 12 Mar 2020 13:51 by ADMIN

Hi,

 

When using a RadDropDownList component and the RadVirtualKeyboard component I have a problem. The AutoCompleteMode.Suggest works fine the first time I click on RadVirtualKeyboard but for the other clics the suggested items don't appears on the screen.

 

Regards

   Gilles

Declined
Last Updated: 03 Jun 2020 12:57 by ADMIN

My scenario is that I have two Panels which changes Size on mouseleave/ mouseEnter events. One panel has a dropdownlist control. When popup is opened and Panel1 changes size upon Mouseenter event, the popup does not change its location. I've tried changing the popup Left property but doesn't fix the issue. Please see attached sample application.

Workaround:

        private void RadPanel1_MouseLeave(object sender, EventArgs e)
        {
            this.radDropDownList1.DropDownAnimationEnabled = false;
            this.radDropDownList1.DropDownListElement.ClosePopup();
            radPanel1.Size = new Size(30, 400);
            radPanel2.Left = radPanel1.Right + 30;
            this.radDropDownList1.DropDownListElement.ShowPopup();
        }

        private void RadPanel1_MouseEnter(object sender, EventArgs e)
        {
            this.radDropDownList1.DropDownAnimationEnabled = false;
            this.radDropDownList1.DropDownListElement.ClosePopup();
            radPanel1.Size = new Size(200, 400);
            radPanel2.Left = radPanel1.Right + 30;
            this.radDropDownList1.DropDownListElement.ShowPopup();
        }

Unplanned
Last Updated: 17 Apr 2024 14:43 by ADMIN
When I select items 1 through 4 in the drop-down list, the expected event occurs (the selected item is removed from the drop-down list and added to the list view).  When I select the last item in the list (item 5), the item is added to the list and then I get the ArgumentOutOfRangeException. 
Completed
Last Updated: 07 Jul 2020 08:18 by ADMIN
Release R3 2020 (LIB 2020.2.713)
Created by: Seth
Comments: 3
Category: DropDownList
Type: Bug Report
0

There is still an issue related to the drop down auto complete described in this bug report.

https://feedback.telerik.com/winforms/1468737-raddropdownlist-autocomplete-mode-works-only-the-first-time-afterward-i-can-only-type-1-character

 

After downloading the Release R2 2020 SP1, we can now enter more than 1 character. However, if the user keys the space bar the text in the edit area of the drop down is deleted. Additionally, if the first 2 characters are the same (for example AA), the second character is never added to the text. The issue can be re-produced using the same steps as the linked post. I have also attached a screenshot.

 

Let me know if you need any additional info.

Seth


Completed
Last Updated: 25 Aug 2020 10:21 by ADMIN
Release R3 2020 (LIB 2020.2.826)

One cannot set the SvgImage of the RadListDataItems.

Additionally, when ShowImageInEditorArea is true the SvgImage must be displayed in the editor area.

Completed
Last Updated: 15 Dec 2020 09:22 by ADMIN
Release R1 2021 (LIB 2020.3.1215)
Please refer to the attached gif file.
Completed
Last Updated: 02 Aug 2021 08:33 by ADMIN
Release R3 2021 (LIB 2021_2_802)
Add a RadDropDownList to the form at design time with the Font set in Points. It doesn't redraw when the font unit is changed to Pixels until form is reopened.
Completed
Last Updated: 02 Aug 2021 08:33 by ADMIN
Release R3 2021 (LIB 2021_2_802)

Using this font is OK:

Font("Calibri", 24, FontStyle.Regular, GraphicsUnit.Pixel)

But using this font is not OK, the Unit is not respected:

Font("Calibri", 24, FontStyle.Italic | FontStyle.Bold, GraphicsUnit.Pixel)

The control also is increased in height.

Completed
Last Updated: 16 Dec 2021 16:15 by ADMIN
Release R1 2022
Unplanned
Last Updated: 09 May 2023 10:32 by ADMIN
The control does not expand to fit the selected item when it has an image and the DropDownStyle is set to DropDownList.
Completed
Last Updated: 05 Feb 2024 13:49 by ADMIN
Release 2024 Q1 (2024.1.130)

StackOverflowException is thrown when setting SelectedValue in the SelectedIndexChanged event.

To workaround this we can unsubscribe from the event before setting the SelectedValue property and then subscribe again. Another approach is to change the SelectedIndex property in the SelectedIndexChanged or SelectedValue in the SelectedValueChanged event.

Completed
Last Updated: 13 Mar 2024 08:49 by ADMIN
Release 2024.1.312

Setting the DataSource in the SelectedIndexChanged event will trigger the event again. Thus leading to StackOverflowException. 

A possible workaround will be to unsubscribe from the event when changing the DataSource property or raise a flag which can be checked in the event handler.

Completed
Last Updated: 12 Feb 2025 12:40 by ADMIN
Release 2025.1.211 (2025 Q1)

Auto-complete items overlap in the VisualStudio2022 theme:

1 2