I have ultraComboEditor having data bind from database.
how to remove items from ultraComboEditor .
i tried to remove items but i got error : "ValueListItems cannot be removed when the ValueList is bound.
This error is correct, you can only have an UltraComboEditor be completely bound or completely unbound, there is no compromise. If you don't want an item to appear, you either need to change the DataSource, copy the DataSource to a new object and bind the UltraComboEditor to that, or use the control completely unbound and add/remove the items directly yourself.
-Matt