I am developing an application with Xamarin Forms. On one page I have a combobox and a picker. The combobox is autocompletable. When I start the app for the first time everything works fine, the combobox autocompletes the words and the picker sh...
I have the following situation, in a table I have the department column and another city, the intention is that when you select a department that would be in column 0, the city combobox will automatically load in the next column in the active ro...
I have a combobox in a wpf application and I want when IsMouseOver the background changes to an image. this is the style of the toggle button now with background with a color. Any ideas?
this is the combobox code
<Style x:Key="cbbOpcion...
I have a table the columns are (Code and Question) the questions are based by Specialty which are in a combo. I made the method search by name of the question in a text field but I also want to filter by combobox. Next I show my DAO and my view...
I have created an instance of ComboBox<Producto> with items from a ObservableList<Producto> that I have filled from the database with instances of class Producto .
To obtain the selected item, use the method...
When I want to update a book, the combobox of the Book goes blank (supposedly I should leave with the data of the book) but when I display the list of authors, categories, etc, and when I change the year of publication or Title of the book I...
I am working in Visual Studio with WinForms. I do the databinding with the combo box in the following way.
cboCurrentSaison.DisplayMember = "Code";
cboCurrentSaison.ValueMember = "ElementID";
cboCurrentSaison.DataSource = eleSaiCur.Elements;...
I have the following code to update data in a window according to the chosen parameter in the ComboBox. The problem is that it gives me a cast error "java.lang.String cannot be cast to rosales.Rosal" and I do not know exactly where the er...
I have a question about html in NetBeans , I have the following values in my combobox :
.ZONA : South Zone, North Zone, East Zone, West Zone
.Quantity : 1, 2
.Banco : BCP, BBVA, INTERBANK, SCOTIABANK
I would like...
Is it possible to scroll to a selected position in a ComboBox using JavaFX? If I execute:
comboBox.getSelectionModel().select(i)
The record is selected and takes the focus but the scroll bar does not move to that place, if it is too...