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).
0
votes
0answers
125 views
jQuery easyUI datagrid combobox displays old value
I'm using jQuery easyUI edatagrid. I have a table that I can edit the values fine, but one column has to be combobox.
Everything works fine (db get's updated), the only problem is when you select a ...
1
vote
0answers
15 views
The BindingList Datasource of a Combobox refreshes correctly but the Combobox displays items in the wrong order and keys and values are messed up
I have a BindingList< KeyValuePair < string, string > > that is bound to a ComboBox control. Based on some conditions, the BindingList will be added a new KeyValuePair. Now, the Newly ...
0
votes
3answers
17 views
Set combo box initially to empty when using datasource
I'm populating a combo box with data from a database using the DataSource property.
I need the field of the combo box to be initially empty.
I've tried:
cbPerson.SelectedIndex = -1;
but this ...
0
votes
0answers
9 views
Combobox with dataset and bindingsource. What am I doing wrong?
I have a datagridview and combobox on a form. I wish to move between rows of datagridview and combobox should be synchronized with the value of one of the columns of the dataset datagridview. In ...
0
votes
1answer
48 views
Extjs Combobox ajax store doesn't render
I have a grid in which I have column which has a combobox editor. I have the following store for the editor combobox
var combostore = Ext.create('Ext.data.Store', {
fields: ['Value'],
proxy: ...
-2
votes
1answer
28 views
Sync 2 Comboxes C#
Hi I'm struggling to come up with an effecient method for syncing 2 comboxes unsing c#. The 2 comboxes contain the same values minus the current selected values from either combobox.
i.e.
...
2
votes
1answer
35 views
Filling and binding two combobox WPF Caliburn.micro
I have this table:
I use in my project this view Called NewItem and in this view there is two combobox.
I would like to do this :
that in the combobox Group there are all DESCRIPTION of table ...
1
vote
2answers
3k views
Populating a TextBox based on selection in ComboBox
all! I'll try to be as detailed as possible in describing my predicament. I have a little background knowledge in Visual Basic, but none really in VBA or VBscript in Outlook 2010.
I'm working with ...
0
votes
1answer
12 views
Office 365 Powershell - WinForm get-msoldomain as string
I'm playing with WinForms and powershell and am creating a form to create a new user on Office 365 as part of a suite of commonly used tools. For specifying email address I will have a text box for ...
0
votes
1answer
24 views
Combobox sender SelectionChanged Event C#
So this code worked perfectly fine for another ComboBox, but even though I changed everything in the code the way it should be it refuses to work now - Different ComboBox, different source but you ...
102
votes
22answers
49k views
How do I have an enum bound combobox with custom string formatting for enum values?
In the post Enum ToString, a method is described to use the custom attribute DescriptionAttribute like this:
Enum HowNice {
[Description("Really Nice")]
ReallyNice,
[Description("Kinda Nice")]
...
0
votes
2answers
3k views
How to populate combo box with values in MS Access 2007
I have a database with 3 tables.
Manufact:
ID, Name, Decription
Model:
ID, Manufact_ID, Name
Order:
ID, Manufact_ID, Model_ID, Quantity, Date,
In Access I would like to have the normal ...
0
votes
0answers
10 views
How can I change the behaviour of all elements of all my zend forms
What I need is to add a param on every element of every form I got. Without having to change the class I'm extending/instantiating (nether form nor element).
I need to add a param on all my ...
0
votes
1answer
33 views
MySQL - ListMenus/Comboboxes
I am trying to build a dynamic set of comboboxes/listMenus getting data from a MySQL DB. My database has 5 fields, 1st being id and
topic, sub_topic, info and url
I want to make it so that until ...
0
votes
0answers
22 views
Combobox in WPF
I am a newbie to WPF.
I want to have a combobox such that :
1) User is allowed to enter text in that but text should match the items.
2) User is allowed to select the items.
3) It should contain ...