Hy
I add a CheckBox column to my grid
and now there is no border to the column
this is the code
Thanks.
I add a CheckBox column to my grid
and now there is no border to the column
this is the code
| <telerik:RadGridView.Resources> |
| <ControlTemplate x:Key="cellTemplate" TargetType="{x:Type telerik:GridViewCell}"> |
| <CheckBox IsChecked="{Binding Field.Record.Data.Add, RelativeSource={RelativeSource TemplatedParent}}" |
| HorizontalAlignment="Center" VerticalAlignment="Center" /> |
| </ControlTemplate> |
| <Style x:Key="booleanCellStyle"> |
| <Setter Property="telerik:GridViewCell.Template" Value="{StaticResource cellTemplate}" /> |
| </Style> |
| </telerik:RadGridView.Resources> |
| <telerik:RadGridView.Columns> |
| <telerik:GridViewDataColumn UniqueName="Add" Header="" Width="Auto" CellStyle="{StaticResource booleanCellStyle}"/> |
Thanks.
