This question is locked. New answers and comments are not allowed.
I have a website built using Telerik Silverlight Controls version: 2011.1.419.1040 for Silverlight 4.
I needed to upgrade the controls version because my client needs the Is NUll/Is Not Null selections in DataFilter. So, I upgraded all of the dlls to the downloadable SIlverlight 4 version: 2012.2.607.1040.
Everything seems to be doing great in the project during regression testing except for a RadComboBox that holds movie titles. Due to the fact that it's full of movie titles, it's rather wide.
So when the combo box renders, it's about 578 pixels wide. Attempting to type a value into the input area puts your cursor at about the 200px mark, rather then left justified, and the input area itself seems to be about 200px wide.
The old version of the combo box in another branch uses the same xaml, but the old dlls and functions correctly. I have attached a screenshot demonstrating the differences in the input area.
I have tried removing all the resources and binding, as well as the items panel template. Nothing changed it. I need to know if I can do anything to make this work properly.
Here is the xaml for the ComboBox:
Thanks in advance!
I needed to upgrade the controls version because my client needs the Is NUll/Is Not Null selections in DataFilter. So, I upgraded all of the dlls to the downloadable SIlverlight 4 version: 2012.2.607.1040.
Everything seems to be doing great in the project during regression testing except for a RadComboBox that holds movie titles. Due to the fact that it's full of movie titles, it's rather wide.
So when the combo box renders, it's about 578 pixels wide. Attempting to type a value into the input area puts your cursor at about the 200px mark, rather then left justified, and the input area itself seems to be about 200px wide.
The old version of the combo box in another branch uses the same xaml, but the old dlls and functions correctly. I have attached a screenshot demonstrating the differences in the input area.
I have tried removing all the resources and binding, as well as the items panel template. Nothing changed it. I need to know if I can do anything to make this work properly.
Here is the xaml for the ComboBox:
<
telerik:RadComboBox
Style
=
"{StaticResource _MouseEnabled}"
x:Name
=
"ddlTitleList"
IsEditable
=
"True"
IsEnabled
=
"{Binding EnableTitleSelection}"
EmptyText
=
"Search or Select"
Grid.Row
=
"1"
Grid.Column
=
"0"
Margin
=
"0,5,0,0"
ItemsSource
=
"{Binding TitleDescriptionList, Mode=TwoWay}"
SelectedItem
=
"{Binding SelectedTitle, Mode=TwoWay}"
DisplayMemberPath
=
"ProductName"
>
<
telerik:RadComboBox.ItemsPanel
>
<
ItemsPanelTemplate
>
<
VirtualizingStackPanel
/>
</
ItemsPanelTemplate
>
</
telerik:RadComboBox.ItemsPanel
>
</
telerik:RadComboBox
>
Thanks in advance!