This question is locked. New answers and comments are not allowed.
I am using RadComboBox which is binded to an observable collection of data. Right now, nothing appears as a default text when the comboboxes are loaded, and I am unable to catch the SelectionChanged event. here is my XAML code and I will be more than glad to provide more code if it is required.
My company is using Silverlight 3 on VSTS 2008 SP 1
My company is using Silverlight 3 on VSTS 2008 SP 1
<telerikDataView:RadGridView.Columns > <telerikDataView:GridViewDataColumn Header="Params"> <telerikDataView:GridViewDataColumn.CellTemplate > <DataTemplate> <telerikInput:RadComboBox x:Name="TelerikParamSelection" IsEditable="True" IsReadOnly="False" ItemsSource="{Binding paramNameList,Mode=TwoWay}" DisplayMemberPath="Name" Loaded="TelerikParamSelection_Loaded"> </telerikInput:RadComboBox> </DataTemplate> </telerikDataView:GridViewDataColumn.CellTemplate> </telerikDataView:GridViewDataColumn>