Tagged Questions

Combobox allows to select one option out of several (similar to a listbox), however, only the selected one is displayed by default (in the interest of screen real estate). The user can either select an option out of the list (from a popup displayed by clicking the button of control) or type a value into it.

learn more… | top users | synonyms

62
votes
17answers
74k views

Professional jQuery based Combobox control?

Are there any professional Combobox controls (dropdown list with autosuggestion) based on the jQuery library? It should be able to handle large datasets and have some skinning options. A multi-column ...
35
votes
7answers
113k views

Binding WPF ComboBox to a Custom List

I have a ComboBox that doesn't seem to update the SelectedItem/SelectedValue. The ComboBox ItemsSource is bound to a property on a ViewModel class that lists a bunch of RAS phonebook entries as a ...
22
votes
8answers
7k views

How can I make a WPF combo box have the width of its widest element in XAML?

I know how to do it in code, but can this be done in XAML ? Window1.xaml: <Window x:Class="WpfApplication1.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
20
votes
9answers
16k views

How can I dynamically change auto complete entries in a C# combobox or textbox?

I have a combobox in C# and I want to use auto complete suggestions with it, however I want to be able to change the auto complete entries as the user types, because the possible valid entries are far ...
19
votes
17answers
84k views

C# How do I set the selected item in a comboBox to match my string?

I have a string "test1" and my comboBox contains test1, test2, test3, how do I set the selected item to "test1"? I.e. how do I match my string to one of the comboBox items? I was thinking of the line ...
17
votes
6answers
11k views

How can I populate a WPF combo box in XAML with all the items from a given enum?

The title pretty much stays it all. Say I have an enum with four values: public enum CompassHeading { North, South, East, West } What XAML would be required to have a ComboBox be ...
15
votes
1answer
9k views

What does ExtJS ComboBox triggerAction: “all” really do?

I tried to create a simple ComboBox: var combo1 = new Ext.form.ComboBox({ store: [1,2,3], renderTo: document.body }); But written this way it acts strangely: When you first time pop open the ...
14
votes
7answers
8k views

Why can't I select a null value in a ComboBox?

In WPF, it seems to be impossible to select (with the mouse) a "null" value from a ComboBox. Edit To clarify, this is .NET 3.5 SP1. Here's some code to show what I mean. First, the C# declarations: ...
12
votes
5answers
15k views

Autocomplete for ComboBox in WPF anywhere in text (not just beginning)

I've got a ComboBox in WPF that I've mucked around with quite a lot (it has a custom template and a custom item template). I've got it to the point now where it is working pretty much how I want it, ...
12
votes
8answers
31k views

WPF ComboBox SelectedValue not updating from binding source

Here's my binding source object: Public Class MyListObject Private _mylist As New ObservableCollection(Of String) Private _selectedName As String Public Sub New(ByVal nameList As ...
11
votes
7answers
1k views

Combobox doesn't allow enter custom text if DataBinding is used

I have the following class: class Address { public string City {get; set;} public string Street {get; set;} } and I have a form with 2 comboboxes on it. I bind these comboboxes to ...
11
votes
14answers
39k views

WPF MVVM ComboBox SelectedItem or SelectedValue not working

Update After a bit of investigating. What seems to be the issue is that the SelectedValue/SelectedItem is occurring before the Item source is finished loading. If I sit in a break point and wait a ...
10
votes
2answers
8k views

How to bind a ComboBox to generic dictionary via ObjectDataProvider

I want to fill a ComboBox with key/value data in code behind, I have this: XAML: <Window x:Class="TestCombo234.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
10
votes
6answers
11k views

How to display default text “--Select Team --” in combo box on pageload in WPF?

In a WPF app, in MVP app I have a combo box,for which I display the data fetched from Database. Before the items added to the Combo box, I want to display the default text such as " -- Select Team ...
10
votes
5answers
8k views

WPF binding ComboBox to enum (with a twist)

Well the problem is that I have this enum, BUT I don't want the combobox to show the values of the enum. This is the enum: public enum Mode { [Description("Display active only")] ...
10
votes
2answers
11k views

wpf combobox binding to enum,what did I do wrong?

I have searched around and it seems very easy to bind enums to combobox, just retrieve Enum values as a list of strings via an ObjectDataProvider from the static Enum.GetValues method, however i can't ...
10
votes
4answers
11k views

C# How to set the autopostback property when using asp.net mvc?

I am using asp.net MVC framework. On my page i have a dropdwonbox and when an option is clicked i want to go to another page. But i can't find how/where to set the autopostback property to true. This ...
9
votes
6answers
23k views

how to bind a list to a combobox? (Winforms)

I want to connect a binding source to a list of class objects and then objects value to a combo box can anyone suggest how to do it public class Country { public string Name { get; set; ...
9
votes
1answer
11k views

How to disable editing of elements in combobox for c#?

I have some elements in a ComboBox (WinForms with C#). I want their content to be static so that a user cannot change the values inside when the application is ran. I also do not want the user adding ...
8
votes
1answer
180 views

How to cast an array to pointer and back in Delphi?

I have an owner drawn combo box that displays the strings in columns. The drawing routine can be shared across combos if I can somehow pass the column specifications to the OnDrawItem event. A natural ...
8
votes
2answers
338 views

Windows Forms ComboBox causing intermittent System.AccessViolationException

Some back story: I have searched both stackoverflow and Google to figure out the origin of this particular exception. We have a Windows Forms (C#, .NET 2.0) application that will occasionally throw ...
8
votes
3answers
2k views

ExtJs 4, How to prevent xtype: 'combo' from collapsing when already selected item clicked?

I have ComboBox. When I click on item from expanded list, ComboBox select this item and collapse. If I click on already selected item it also collapsing. Is there a way to "stop" ComboBox collapsing ...
8
votes
4answers
5k views

jQuery UI Autocomplete Combobox Very Slow With Large Select Lists

I'm using a modified version of the jQuery UI Autocomplete Combobox, as seen here: http://jqueryui.com/demos/autocomplete/#combobox For the sake of this question, let's say I have exactly that code ...
8
votes
4answers
1k views

ComboBox AutoComplete on SubString

In one of my WinForms applications, I have a window with a ComboBox for the user to select a customer from. The customers in this list box are in this format : "CustomerID - CustomerName", for ...
8
votes
3answers
2k views

How to stop a comboBox's selectedIndexChanged event from firing when the form loads

I have a form with a ComboBox that provides a dropdownlist. On the comboBox's SelectedIndexChanged event, am running some code, but i don't want that code to run when the form loads. Unfortunately, ...
8
votes
4answers
2k views

Name Value Pairs in a ComboBox

I'm convinced this must be a common problem, but I can't seem to find a simple solution... I want to use a combobox control with name value pairs as the items. ComboBox takes TStrings as its items so ...
8
votes
2answers
960 views

Anyone know of a decent editable combo box plugin?

I'm seeing a couple online but the sites that these guys have look like crap so I don't know if I want to use their plug-ins. If you USE an editable combo box in your web app and you LIKE the plugin ...
8
votes
3answers
10k views

ComboBox SelectedItem vs SelectedValue

The following code works as you’d expect — MyProperty on the model is updated when the user picks a new item in the dropdown. comboBox1.DataBindings.Add("SelectedValue", myModel, "MyProperty", true, ...
8
votes
1answer
1k views

How do you add a generic item to a ComboBox bound to a collection in WPF

I have a ComboBox in a WPF application that is bound to an ObservableCollection of Department objects in a C# ViewModel class. I want to use the combo box to filter another collection by department ...
8
votes
3answers
2k views

Non-editable combobox in Winforms?

Is there a combobox dropdown style control in Winforms that doesn't let the user to type anything but only pick from the existing list of items?
8
votes
3answers
8k views

Looking for a WPF ComboBox with checkboxes

My google skills fail me. Anyone heard of a control like that for WPF. I am trying to make it look like this (winforms screenshot).
8
votes
4answers
8k views

WPF: TreeView inside a ComboBox

I'm trying to put a TreeView inside a ComboBox in WPF so that when the combo box is dropped, instead of a flat list the user gets a hierarchical list and whatever node they select becomes the selected ...
8
votes
9answers
25k views

How to insert 'Empty' field in ComboBox bound to DataTable

This is frustrating, as I am sure I have done this before without issue. I have a combo box on a WinForms app in which an item may be selected, but it is not mandatory. I therefore need an 'Empty' ...
7
votes
2answers
550 views

extjs Combobox typeahead / auto selection for single charactor

I am using extjs combobox for a sex field. It have two value "M" and "F". I want to make it usable with keyboard: [ xtype: 'combo', typeAhead: true, ...
7
votes
2answers
370 views

Force ComboBox to open up in Silverlight?

I have a ComboBox in Silverlight that has very inconsistent behavior. I have the ComboBox bound to a dynamic collection of data where elements are added or removed. Here is the XAML for the ...
7
votes
2answers
3k views

How do I get the selected index of an ExtJS Combobox

What is the certified way to determine the index of the currently selected item in a ComboBox in ExtJS? Is there a difference on how to do this between ExtJS 3.x and 4? var combo = new ...
7
votes
6answers
447 views

Autocomplete vs Drop-down. When to use?

I've read somewhere (can't remember/find where) an article about web usability describing when to use drop downs and when to use autocomplete fields. Basically, the article says that the human brain ...
7
votes
8answers
9k views

Is it possible to set the width of a jquery autocomplete combobox

i am using this jquery ui combobox autocomplete control out of the box off the jquery ui website: my issue is that i have multiple comboboxes on a page and i want them to have different widths for ...
7
votes
2answers
1k views

combo box autocomplete

Is there anyway to have the autocomplete for a combo box to start from anywhere in the text, let me give you an example. If I have someone named john smith in the combobox if I start with the letter ...
7
votes
2answers
11k views

C#/WPF: Binding Combobox ItemSource in Datagrid to element outside of the DataContext

I'd like to do following: public List<Users> PreLoadedUserList { get; set; } public List<RowEntries> SomeDataRowList { get; set; } public class Users { public int Age { get; set; } ...
7
votes
2answers
9k views

WPF: ComboBox without dropdown button

I want a ComboBox which has no dropdown button but can still be opened when I click on the text in the combobox. Is this possible with a WPF combobox?
7
votes
5answers
19k views

Binding ComboBox.SelectedItem in Silverlight (more)

Related to my previous question: http://stackoverflow.com/questions/855519/binding-combobox-selecteditem-in-silverlight I have a ComboBox bound like so: <ComboBox x:Name="PART_CommentaryList" ...
7
votes
7answers
3k views

Using the AutoComplete feature of ComboBox, while limiting values to those in the list?

In WinForms 2.0, a ComboBox has an Auto-Complete feature, that displays a custom Drop-Down list with only the values that start with the entered text. However, if I want to limit valid values to only ...
7
votes
1answer
26k views

C# Update combobox bound to generic list

I have a combobox on my form that is bound to a generic list of string like this: private List<string> mAllianceList = new List<string>(); private void FillAllianceList() { // Add ...
7
votes
4answers
3k views

Best javascript combo box?

A combo box is an auto-complete text box that is also a dropdown (i.e., you can choose from a list if you prefer). "Best" means combination of: stable, look/feel, API / customizability, maturity.
6
votes
3answers
146 views

Is there an alternative to the OnChange event that is raised on any action in Delphi?

From the Delphi XE documentation:- Note: OnChange only occurs in response to user actions. Changing the Text property programmatically does not trigger an OnChange event. Are there any other ...
6
votes
2answers
438 views

ExtJS - ComboBox width in EditorGridPanel

I have set up an EditorGridPanel with ComboBox's and it's working well. The only issue I'm having is that the width of the ComboBox seems to only expand to the width of the grid column, and not the ...
6
votes
2answers
2k views

Two-way binding problem with WPF ComboBox using MVVM

I have an Activity object with many properties. One of them is as follows: public ActivityStatus Status { get { return status; } set { status = value; NotifyPropertyChanged("Status"); } } ...
6
votes
5answers
1k views

Multi-Column ComboBox Controls for Winforms

Please recommend some Multi-Column ComboBox control for Winforms application in .net. Better if they are free. I found Syncfusion - Multi-column-combo-box it can show datagrid which is bound to ...
6
votes
1answer
2k views

ExtJS combobox acting like regular select

I try to use ComboBox on FormPanel, it is defined like this: xtype: 'combo', name: 'Reasons', store: new Ext.data.ArrayStore({ id: 0, ...

1 2 3 4 5 57