or

<Style x:Key="myCellStyle" TargetType="{x:Type telerik:GridViewCell}"> <Setter Property="IsEnabled" Value="{Binding RelativeSource={RelativeSource Self}, Converter={StaticResource myConverter}}" /> </Style>public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) { GridViewCell cell = (GridViewCell)value;
if(cell.Value == null)
return true;
else
return (bool)cell.Value; }private void grid_DataLoaded(object sender, EventArgs e) { foreach (Telerik.Windows.Controls.GridViewColumn col in gridCheck.Columns) { col.CellStyle = (Style)this.Resources["myCellStyle"]; } }