Using 2013.Q2.SP1
I am trying to use the Drag and Drop example in my application and it uses the style below. However, when I run my application I get an error because of the BasedOn="{StaticResource GridViewRowStyle}". Where is this style? I could not find it in the VS 2012 samples.
Error Message:
{"Cannot find resource named 'GridViewRowStyle'. Resource names are case sensitive."}
I am trying to use the Drag and Drop example in my application and it uses the style below. However, when I run my application I get an error because of the BasedOn="{StaticResource GridViewRowStyle}". Where is this style? I could not find it in the VS 2012 samples.
Error Message:
{"Cannot find resource named 'GridViewRowStyle'. Resource names are case sensitive."}
<
Style
TargetType
=
"telerik:GridViewRow"
x:Key
=
"OrderItemStyle"
BasedOn
=
"{StaticResource GridViewRowStyle}"
>
<
Setter
Property
=
"telerik:DragDropManager.AllowCapturedDrag"
Value
=
"True"
/>
<
Setter
Property
=
"telerik:DragDropManager.TouchDragTrigger"
Value
=
"TapAndHold"
/>
</
Style
>