I have a combo as follows
<ig:XamComboEditor Name="ComboEditor1" Grid.Column="0" Grid.Row="3" Width="100" HorizontalAlignment="Left" ItemsSource="{Binding Path=SourceName}"
DisplayMemberPath="Field1"
SelectionChanged="ComboEditor1_SelectionChanged" SelectedItem="{Binding Path= Field1,Mode=TwoWay,Converter={StaticResource Field1SelectedConverter
}}">
</ig:XamComboEditor>
I have created a Field1SelectedConverter
But the combobox does not seem to trigger it
What i need is that the combobox has data as InState/OutOfState and I want OutOfState to be selected by default
I am having that logic in Field1SelectedConverter but that does not get called
Hi,
the xaml code looks OK. I am not sure what exactly the problem is - it might be something about the binding.
I have attached a sample solution which covers your scenario.
Regards,