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. 
Unplanned
Last Updated: 01 Apr 2024 10:56 by ADMIN

The currently applied theme is VisualStudio2022Light. The button its move down due to the scaling mechanism.

Unplanned
Last Updated: 19 Mar 2024 09:43 by erwin
When moving between screens with different dpi the PopupOpening event should not be called.
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.
Unplanned
Last Updated: 22 Mar 2023 09:44 by ADMIN

Use the following code snippet and click the button to delete the first item from the BindingList:

        BindingList<DoctorTest> list = new BindingList<DoctorTest>();
        public RadForm1()
        {
            InitializeComponent();
            for (int i = 0; i < 5; i++)
            {
                list.Add(new DoctorTest(i,"Item"+i));
            }
            this.radDropDownList1.DisplayMember = "Name";
            this.radDropDownList1.ValueMember = "Id";
            this.radDropDownList1.DataSource = list;
            this.radDropDownList1.SelectedIndex = 4;
            this.radDropDownList1.SelectedValueChanged+=radDropDownList1_SelectedValueChanged; 
        } 

        private void radDropDownList1_SelectedValueChanged(object sender, EventArgs e)
        {
             RadMessageBox.Show(this.radDropDownList1.SelectedValue +" ---");
        }

        public class DoctorTest
        {
            public int Id { get; set; }
            public string Name { get; set; }

            public DoctorTest(int id, string name)
            {
                this.Id = id;
                this.Name = name;
            }
        }

        private void radButton1_Click(object sender, EventArgs e)
        {
            list.RemoveAt(0);
        }

 

Unplanned
Last Updated: 24 Feb 2023 14:30 by ADMIN

RadDropDownList gets focused when the DpiScaleChanged is triggered.

Run the attached sample project. When the form is moved from monitor A (100% DPI) to monitor B (150% DPI), every RadDropDownList gets the focus which leads to scrolling the container back to the top.

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

Unplanned
Last Updated: 19 Feb 2020 14:27 by ADMIN
Unplanned
Last Updated: 17 Sep 2019 14:09 by ADMIN

To reproduce the problem, we need 2 Monitors with different scaling.
Let's say that Monitor 1 has 150% Scaling and Monitor 2 has 100% (Monitor 2 is the main monitor). When starting the program and click on radbutton1, then an empty form (Toolbox) is shown. Move the Toolbox form to the other monitor and then open the RadDropDownList. The problem is that the drop-down is shown not under the control.

Please refer to the attached project.