This question is locked. New answers and comments are not allowed.
I am using Silverlight 3.0 and I'm trying to add a column with checkboxes (to facilitate the selection of rows) to the radgrid using the following piece of code-
But its throwing an error-"Invalid attribute telerikGridView:GridViewCell for property TargetType".
I am not sure If I am missing any namespace or its because of any other reason.
Please help me to resolve this.
Thanks in Advance,
Abhishek Chauhan
<telerikGridView:GridViewColumn HeaderText="Check">
<telerikGridView:GridViewColumn.CellStyle>
<Style TargetType="telerikGridView:GridViewCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="telerikGridView:GridViewCell">
<Border Padding="5,0,5,0" BorderThickness="0,0,1,1" BorderBrush="#FFB3B3B3">
<CheckBox HorizontalAlignment="Center" VerticalAlignment="Center" />
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</telerikGridView:GridViewColumn.CellStyle>
</telerikGridView:GridViewColumn>
But its throwing an error-"Invalid attribute telerikGridView:GridViewCell for property TargetType".
I am not sure If I am missing any namespace or its because of any other reason.
Please help me to resolve this.
Thanks in Advance,
Abhishek Chauhan
