hey guys,
I have an issue with binding ... You might be able to help me with.
Currently we have a RadComboBox :
So, we have
However i think at the moment its not setting the combo box correctly upon loading our control, this DOES work correctly when saving etc. but its just the inital load that is causing issue...
I have an issue with binding ... You might be able to help me with.
Currently we have a RadComboBox :
<telerikControls:RadComboBox Name="uiActionerNamesComboBox" IsEditable="True"IsReadOnly="False" Margin="0,0,3,0" ItemsSource="{Binding AllAgilityJobDocs}" SelectedValue="{Binding SelectedActioner, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged, NotifyOnTargetUpdated=True}"KeyUp="uiActionerNamesComboBox_KeyUp" telerikControls:TextSearch.TextPath="Title" HorizontalAlignment="Stretch" EmptyText="{Binding ThisActioner.Position, Converter={StaticResource EmptyActionerTextConverter}}">So, we have
AllAgilityJobDocs which are a list of SimpleAgility Items... These items are populated and then we have the SelectedActioner Value which will be a value on this list... However i think at the moment its not setting the combo box correctly upon loading our control, this DOES work correctly when saving etc. but its just the inital load that is causing issue...