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
1160
How to bind selectedItems in XAMComboEditor for multiple selection?
posted

HI,

We are using XAM Combo Editor having multiple selection.

<ig:XamComboEditor Name="ComissionsLocationCombo"  ItemsSource="{Binding Path= LocationdataComissions}" CheckBoxVisibility="Visible"  AllowMultipleSelection="True" Grid.Row="1" Grid.Column="1" EmptyText="Select ..."  
                                    SelectedValuePath="LocationId" DisplayMemberPath="LocationName" Height="40" Width="230" HorizontalAlignment="Left" SelectionChanged="ComissionsLocationCombo_SelectionChanged" KeyDown="ComissionsLocationCombo_KeyDown"
                                   SelectedItems="{Binding  SelectMultipleLocation, Mode=OneWay,UpdateSourceTrigger=PropertyChanged,NotifyOnSourceUpdated=True,
            NotifyOnTargetUpdated=True}">

In View Model Bind SelectMultipleLocation

  public void SelectLocations(object parameter)
       {

       }

But In ComboBox not going to check any Item.

Please help us

Thanks

Parents Reply Children
No Data