Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
495
Allow user to enter new value in WinCombo
posted

I'm using a WinCombobox which has a list of Strings as datasource.

So after construction of the combo, it contains multiple items (strings). Now I want the user to allow adding entering a new value which is not listed in the combo.

This value must NOT be added to the combolist after entering.

Which properties do I have to set to make this work ?

Parents
  • 71886
    Offline posted

    Hello timdelma,

    After reading your post several times, what I understood is - you want to allow the user to add a new value which is not listed in the combo, but this value must not be added to the combo. Where do you want to add it then? And do you want to add it at all anywhere? If you mean that you cannot enter a value which is not in the list, I suppose that you have changed the DropDownStyle or the LimitToList properties.

    Please make sure that they are set as follows:

          ultraCombo1.DropDownStyle = Infragistics.Win.UltraWinGrid.UltraComboStyle.DropDownList;

          ultraCombo1.LimitToList = true;

    Please feel free to let me know if I misunderstood you or if you have any other questions.

Reply Children
No Data