Hi,
here is how i defined my namespace:
xmlns:igEditors="http://infragistics.com/Editors"
Editor:
<igEditors:XamComboEditor Style="{StaticResource TrialSearchEditor}" Width="120" ItemsSource="{Binding Entities}" Value="{Binding SelectedEntities, Mode=TwoWay}" />
according to documentation, this control should have a property called AllowMultipleSelection, but this one does not.
i don't see any property on this control that would allow for multi select.
Editors DLL version: 11.1.20111.1002
as per that same documentation, i also tried using the following namespace, but that didn't work at all (as in.. no controls were defined in there)
xmlns:ig="http://schemas.infragistics.com/xaml"
Hello,
I have been looking into your issue and we provide two XamComboEditors controls from our NetAdvantage 2011.2 product for WPF up to now : WPF Specific XamComboEditor and shared XamComboEditor. WPF Specific XamComboEditor is similar to the Microsoft ComboBox control as the big difference between them is the way in which you bind data to the control. The shared XamComboEditor is not an ItemControl and you cannot add items directly in XAML. It must be strictly bound to data. It is not extended version of the WPF Specific XamComboEditor.
For more information about them I can suggest you look through the following links from our online documentation :
http://help.infragistics.com/NetAdvantage/WPF/2011.2/CLR4.0/?page=xamComboEditor.html
http://help.infragistics.com/NetAdvantage/WPF/2011.2/CLR4.0/?page=DP_xamComboEditor.html
The property that you are looking for is available only in the shared XamComboEditor which is not available in NetAdvantage 2011.1. This is why you cannot find it.
If you have any other questions on this matter, feel free to ask.
hey Yanko,
thanks.
i am not set on using that specific editor.
my requirements are simple. i just need a multi select dropdown that i can bind to a collection.
do you offer anything in 11.1 for that?
As I have mentioned in my previous post the standard WPF XamComboEditor does not support multiple selection of the dropdown items. I can suggest you purchase our new NetAdvantage 12.1 where the shared XamComboEdior is available.
how do i switch to the "shared" xamComboEditor in 12.1? ????
it seems like i am still on the non shared one, because AllowMultipleSelection is not available.
i am using this namespace:
if i try using namespace
xmlns:ig="http://schemas.infragistics.com/xaml" i get a message that xamComboEditor doesn't exist there. this is seems unnecessarily complicated??
i get a message that xamComboEditor doesn't exist there.
this is seems unnecessarily complicated??
I have created a sample application(ShareComboSample.zip) that presents how you can use the shared XamComboEditor.
If you need any further assistance, feel free to ask.
Yes, the shared XamComboEditor is available only with our WPF4 .dll files.
quick question.
the example you sent me uses WPF4.* libraries. does that mean it requires .Net 4.0 ?
is there a WPF3 version of this combo editor that support multi select ?