1
vote
2answers
16 views
How to disable the drop down function of combo box on certain conditions?
Hi, I have a combo box in my application. I also have a variable called "Status". I want the combo box to be enabled only when the value of the Status variable is 5 or 6. Otherwis …
1
vote
1answer
17 views
Flex3 Combobox doesn’t display itemRenderer when closed.
I have a combobox with a custom itemRenderer. The ItemRenderer displays some images and a label.
When the combobox opens, the items in the dropdown list display perfectly, but when …
0
votes
3answers
17 views
JavaScript-HTML: Create ComboBox with non-selectable items
I would like to create a ComboBox like you can see in the following image
The Combo/Menu/List should allow some items to be bold (Main Categories), and to have "sub-categories" …
0
votes
1answer
34 views
ASP.NET AJAX Toolkit Combobox need to press enter twice to postback
Hi, im using a ComboBox for a feature in my application, and i have AutoCompleteMode="Suggest".
However, after i type the in the textbox for a search, and press Enter, nothing hap …
0
votes
2answers
43 views
DataGridView and Combobox Column?
when DataGridView has a combobox column, how can I get the text it displays as oppose to the value it represents? When I do DGV.Item("cbo",i).Value I get the value but it won't tak …
0
votes
1answer
32 views
How to prevent a combobox first item from being selected on DataSet.Merge()
Hi,
I've got a ComboBox which items are coming from a DataTable in a DataSet. When there is no item selected (combo.selectedindex = -1) and I do a .Merge() on the DataSet the firs …
0
votes
1answer
25 views
How to bind ComboBox or ComboboxEdit to a DataTable
Hello, could anyone help me to set combobox or combobox edit values from a datatable?
In WinForms it was something like this:
DataSet dataBases = GetDatabases();
…
0
votes
3answers
57 views
How to insert ComboBox item into ListBox? [winforms]
The question is very simple,
How to insert ComboBox selected item into ListBox using c#?
I have tried with this:
listbox.Items.Add(combobox.SelectedItem);
and some other permut …
0
votes
2answers
22 views
How to separate the selected item of two combobox with a single DataSource?
On a form, I have two combobox wich have the same DataSource (their elements list are the same). When the user select an item in one of the control, the other control's selected it …
0
votes
0answers
15 views
How to use WPF Toolkit Datagrid DataGridTemplateColumn and a combobox?
I have a data grid that looks like this
<tk:DataGrid ItemsSource="{Binding Parents}" AutoGenerateColumns="False">
<tk:DataGrid.Columns>
…
0
votes
1answer
23 views
WPF Datagrid, Setting the background of combox popup
Hi,
I would like to change the color of the popup background when using a DatagridComboboxColumn in the WPF Toolkit datagrid. I've edited the Template for a normal Combobox and it …
1
vote
1answer
15 views
.NET Windows Forms datagridview - have to click combobox column three times to get focus
I'm making a Windows Forms application which has a standard DataGridView in it. The DataGridView has several DataGridViewComboBoxColumns in it. And they are a pain to work with. To …
0
votes
1answer
60 views
WPF ComboBox DropDown arrow color
Hello
I am trying to work out a style for a combo box that has a navy background with white text, so I want the drop down arrow to be white also (the xaml I have so far is below). …
0
votes
1answer
31 views
Populating richfaces ComboBox
Hi all,
I am trying to populate a combobox as late as possible, to improve performance. I once had populating methods for all the combo boxes in a page in the constructor of the b …
1
vote
3answers
117 views
Why is my owner-drawn combobox shown empty?
I'm subclassing a WTL combobox and I'm owner-drawing the items of the combobox. The control has the attributes CBS_DROPDOWNLIST | CBS_HASSTRINGS | CBS_OWNERDRAWVARIABLE and I'm usi …
