Hi,
is there a way to make the combo editable and accepting text even if it does not exist in its itemssource?
i figured it out.
it will act as a normal item.. so all you have to do is use the selecetditem and the property of DisplayMemberPath.
one more thing.
i don't want to add it to the itemssource so i just set the CustomValueEnteredAction to "Allow".
but how can i get the text entered?
wow that was a fast reply :)
thanks
you need to set the IsEditable prop of XamComboEditor to true to make the combo editable. If you want to add items to the ItemSource you have to set CustomValueEnteredAction="Add". Check out this help article to get the mechanics of adding and creating new items.
HTH,