Hello,
I use:
[+] licensed Wisej 2.2.17.0
[+] Microsoft Visual Studio Enterprise 2019, version 16.7.7
[+] Windows 10
I found the following problem for the Wisej.Web.Combobox.
[1] Configure the combo box with ReadOnly = true
[2] Fill the combo box with
foreach (FontFamily font in System.Drawing.FontFamily.Families)
comboBoxFont.Items.Add (font.Name);
[3] Combobox can no longer be used, scroll bar cannot be moved, entry cannot be selected
[4] Workaround ReadOnly = false
Many Thanks. Greetings.
Hi Mathias,
I´m not sure I fully understand your request as you are talking about a readonly ComboBox that should still allow to select an entry?
If you want to have a ComboBox where you cannot edit the text part but still select entries you can set the DropDownStyle to DropDownList
ReadOnly ComboBoxes should not allow a change of the value.
Hope that helps.
Best regards
Frank
Please login first to submit.