I have a combobox with AutoCompleteSeparator=";" and use ItemsRequested for load data ,after select multi items the Text property is correct but SelectedValue property has only last selectedItem value .How can i get SelectedItems or selectedValues in combobox?
The SelectedValue property will return the value of
the last selected item if you are using AutoCompleteSeperator for radcombobox. If you need to get the values of all the
selected items, you should get the text of the input field, and split the string by ";" and find the items by text (FindItemByText) to get the values of the items. See the example shown below.
Hi Shinu
Thanks for your reply but I use ItemsRequested event for load data and "FindItemsbyText" return null because combobox Items is null. my code is like this :