This question is locked. New answers and comments are not allowed.
I have a Silverlight 4 application, and the version of the GridView binary is 2012.1.215.1040.
However, it seems that the GridView binary expects a Sliverlight 5 runtime.
This code throws an exception (Arg_TargetInvocationException):
<
Style
x:Key
=
"gridValueRowStyle"
TargetType
=
"telerik:GridViewRow"
>
<
Setter
Property
=
"Background"
Value
=
"{Binding State, Converter={StaticResource stateToBrushConverter}}"
/>
</
Style
>
This exception is thrown only on computers with SL4 runtime. Note that the style doesn't have to be applied to GridView. Simply defining the style like this in Page resources is enough to throw an exception.
Is this the bug or is this version of the GridView binary expected to work only with SL5?
If the latter is true, where can I find the latest GridView version that would work on SL4 and where can I find the change log between that version and the version I currently have?