Hello, I am very new in Infragistic Control.
i have an ultracomboEditor which is Bind from Database.
now i want manually to insert Item in UltraComboEditor
but i got error :
" ValueListItems cannot be inserted when the ValueList is bound"
how to correct this Error.??
Hi,
You can't add any unbound items in this case :)
What you can do is to set the Text property of ultracomboEditor to display some text before selection is made. Once selection is made this text will dissappear.
Or you can iterate through the dataset in a loop and add each record into the ultracomboeditor instead of binding the data to the control, and insert any items you want to display in the end.