This question is locked. New answers and comments are not allowed.
I have a combo box with predefined values and the selected item does not display when the page first comes up. If I select something from the combo box then is displays just fine. Is there something else I need to set? I am using the lates Q3 controls.
| <telerikInput:RadComboBox x:Name="rddNormalRouteLineType" HorizontalAlignment="Right" Margin="0,49,50,0" VerticalAlignment="Top" Width="95" Height="20"> |
| <telerikInput:RadComboBoxItem IsSelected="True"> |
| <TextBlock Text="Solid" /> |
| </telerikInput:RadComboBoxItem> |
| <telerikInput:RadComboBoxItem> |
| <TextBlock Text="Dashed" /> |
| </telerikInput:RadComboBoxItem> |
| <telerikInput:RadComboBoxItem> |
| <TextBlock Text="Dot" /> |
| </telerikInput:RadComboBoxItem> |
| <telerikInput:RadComboBoxItem> |
| <TextBlock Text="Dash Dot" /> |
| </telerikInput:RadComboBoxItem> |
| <telerikInput:RadComboBoxItem> |
| <TextBlock Text="Dash Dot Dot" /> |
| </telerikInput:RadComboBoxItem> |
| </telerikInput:RadComboBox> |