Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
30
XamComboEditor Options missing
posted

I'm attempting to use the XamComboEditor and there is no option to AllowMutlipleSelection as indicated in the latest copy of the samples browswer.

Sample Code

        <ig:XamComboEditor x:Name="ComboEditor" ItemsSource="{Binding Path=Customers}"
                           Height="30" Width="300"
                           IsEditable="True"
                           DisplayMemberPath="ContactName"
                           AllowMultipleSelection="True"
                           SelectionChanged="XWComboEditor_SelectionChanged"
                           CheckBoxVisibility="Visible"/>

My code does not have that--