Questions tagged [combobox]

Combobox allows to select one option out of several (similar to a dropdownlist), or to type a custom option.

allows to select one option out of several (similar to a ), or to type a custom option. The main difference with the is thus that it's editable.

Although comboboxes are primarily meant for single selection they may be customized to support multiple selections.

, and are quite similar. However, is a read-only dropdown list of options and is a read-only list of options. Whereas in case of , the user can either select from the dropdownlist or type a value directly into the input field.

Drop-down list is sometimes also refered to as non-editable version of combobox.

See Wikipedia entry for Combobox.

18062 questions
3
votes
1 answer

How to force JavaFX ComboBox to loose focus?

I would like that my JavaFX ComboBox looses the focus after a selection. Any ideas?
IBACK
  • 39
  • 9
3
votes
4 answers

Using three different ComboBoxItem styles in one WPF ComboBox

So I'm trying to create a user control for an application I'm working on. It's basically a ToggleButton next to a ComboBox. I was able to pretty much mock the ComboBox portion of the user control up in VS2015 the way the designers want it, but I…
WERUreo
  • 194
  • 2
  • 12
3
votes
2 answers

Clicking on iFrame does not blur Ext Combobox

I have a page with a Ext.form.ComboBox and a TinyMCE Editor, which uses an iframe for its body. The problem is that when the ComboBox has focus and the user clicks on the iframe, the ComboBox's blur event is not fired. If the user clicks back to the…
jwien001
  • 169
  • 2
  • 11
3
votes
2 answers

Combobox with multiple columns

Scenario: I am in the process of moving an application from access to C# and on one of the forms(in access) the user is able to select a drop down that has 3 columns (ID, FirstName, LastName). Once they select from the list the ID is displayed on…
Gage
  • 7,365
  • 9
  • 47
  • 77
3
votes
1 answer

Does JavaFX 8.0 TableView have a sort bug?

Java 8.0 x64, Win7 x64, Clojure, Emacs. I'm doing some stuff in Clojure with TableView wherein I'm proxying TableCell so I can render and edit arbitrary things in it. The values are the fields of a map which is inside an atom. Code is below. It…
Sonicsmooth
  • 2,673
  • 2
  • 22
  • 35
3
votes
0 answers

Paginated Combo Box

I have a huge data for a simple HTML default combo box, say 3000+ and unluckily I can not reduce the data. Simply, I could populate the combo box with 3000+ records but I want the data to appear in paginated form. What's the best way to achieve…
Imam Bux
  • 1,006
  • 11
  • 27
3
votes
1 answer

WPF `ComboBox` ItemsSource property is changed the SelectedItem property is being set to null

This issue that is occurring is that whenever the WPF ComboBox ItemsSource property is changed the SelectedItem property is being set to null. Requirements to recreate issue: Original ItemsSource is a collection of objects that ARE NOT…
Sam Alex
  • 442
  • 1
  • 6
  • 21
3
votes
1 answer

Setting SelectedIndex in ComboBox DropDown eventhandler

Recently I reproduced strange behaviour of this message at my Windows 7. May be it is a feature, and may be it is not depends on Windows 7, please correct me if it is right behaviour. In MSDN we see An application sends a CB_SETCURSEL message to…
albicelestial
  • 145
  • 2
  • 12
3
votes
1 answer

Setting ItemSource in DataGridComboBoxColumn Using Separate Database Table

My first StackExchange question, so tell me if I do anything wrong. I'm converting old winforms code to WPF, and am leaning them both along the way. I've been successful most of the time, but I'm tacking my first Data Table involving Data Binding. …
MichaelN
  • 156
  • 8
3
votes
3 answers

How to limit the size of drop-down of a ComboBox in QML

I am using a ComboBox in QML and when populated with a lot of data it exceeds my main windows bottom boarder. From googling I have learned that the drop-down list of a ComboBox is put on top of the current application window and therefore it does…
uniquenamehere
  • 1,869
  • 3
  • 31
  • 60
3
votes
1 answer

WPF: Change ComboBox arrow button color in XAML

I want to change my ComboBox Arrow color while Mouse Over. Currently i only found this little Squesre around the Arrow and change it while Mouse Overis True:
mark yer
  • 403
  • 6
  • 12
3
votes
2 answers

Flex extending ComboBox

I created a class CustomCombo.as that extends ComboBox. What is happening is that the CustomCombo combobox is showing as being editable. I do not want this and I cant find the properties to set the editable to false. I also tried setting the…
Pieter van Niekerk
  • 848
  • 15
  • 42
3
votes
1 answer

Get data from table with combo box (Codeigniter)

I want to get data N_KENDALA from table kendala. Table "Kendala" join with Table "Pelayanan" This is my controller -> pelayanan.php public function ubah($ID_PELAYANAN){ $data['Kendala'] = $this->model_pelayanan->kendala(); …
user5072610
  • 127
  • 2
  • 10
3
votes
1 answer

Already-selected items of dropdown/combo box should reflect as selected on click over Label

I am using label for attribute for input elements in my website that will help blind users. I have Combobox/Drop down in my code to enter Date (Month/Day) format. Currently if there is only single drop down , for example Select Country, then on…
user4956321
  • 313
  • 1
  • 3
  • 15
3
votes
2 answers

ComboBox has extra space at the bottom

I have a ComboBox that shows empty space below its values. See picture below. The data in the view model is set in a button click handler. When I set the values in the initialization of the view model the ComboBox is fine. When I try to create a…
Johannes Schacht
  • 930
  • 1
  • 11
  • 28
1 2 3
99
100