I saw a similar question, but mine is the opposite. I want the user to be able to enter into the combobox
so I have my UltraCombo as DropDown. Here's my problem. I have a BeforeDropDown event inside which I go to the database and load a datatable. Than I bind that datatable to the UltraCombo datasource. As soon as the DropDown Box opens, the current value is blanked out. Even though the current value exists in the list that was loaded. Anyone else having these problems
The Combo should not blank out in DropDown style, even if the item does not exist on the list.
What version are you using?
Can you create a small sample project demonstrating this?
I still see this behavior in Infragistics 10.2. BeforeDropDown sets the DataSource and right after DataSource is set the Value is still preserved. However, sometime later the internal DoDropDown method seems to clear it.
Hi,
If it's getting cleared when you drop it down, my best guess is that there is a data type mismatch going on somewhere along the way.
Are you binding the Value or Text property of the control? If so, what's the data type of the field you are binding to?
And what are the DataTypes of the ValueMember and DisplayMember columns?
The combo data source is a single string column DataTable and both ValueMember and DisplayMember set to the same column name. The Value property is set to a string which is contained in the DataTable.
Using the workaround that rpgCoder suggested (storing the Value in BeforeDropDown and setting it again in AfterDropDown) works but it's a "hack" that I'd rather not use.
Hello,
This issue has been resolved in the latest service release as of 1/4/2012. You can download the Service Release from your My Keys & Downloads page: https://es.infragistics.com/Membership/Default.aspx?panel=Downloads#Downloads
I have logged this as a development issue with an ID# of 96044. I will make another post once this issue has been resolved.
I will be happy to help you out with this issue.
I have created case # CAS-77063-KM3PFG for you to better assist you with this issue going forward. To access the case, simply log into your IG account and click on My Support Activity.
Please let me know if you have further questions in this matter utilizing the case created.
Oops, sorry about that. I misread the code.You are right, this does seem like a bug in that case.
I'm going to forward this thread over to Infragistics Developer Support so they can create a case for you and look into this issue more thoroughly.
Hi Mike, thanks for looking into this. I'm afraid, though, that it is a bug. What you're saying is correct if the combo was, in fact, using DropDownList style. But if you look at the sample, you'll notice that it's specifically set to DropDown style. So the value can be anything.