This question is locked. New answers and comments are not allowed.
I am newbie to RadControls. I have to work with RadGridView. While analysing the code, I found one property called ColumnBackground with peculiar value ={x:Null}: Can anybody learn me what does it mean? I am sending the code part also.
<grid:RadGridView x:Name="GridView1"
CanUserResizeColumns="False"
MultipleSelect="True"
DataLoadMode="Asynchronous"
AreRowDetailsFrozen="True"
RowDetailsVisibilityMode="VisibleWhenSelected"
RowDetailsTemplate="{StaticResource TestRowDetailsTemplate}"
SelectionChanged="GridView1_SelectionChanged"
ItemsSource="{Binding TestAwards, Mode=TwoWay}"
IsReadOnly="True"
AutoGenerateColumns="False"
ColumnsWidthMode="Fill"
CanUserFreezeColumns="False"
UseAlternateRowStyle="True"
ColumnBackground="{x:Null}"
ShowGroupPanel="False"
RowIndicatorVisibility="Collapsed"
ScrollMode="RealTime"
Style="{StaticResource RadGridViewSettings}"
IsEnabled="False"
Background="Transparent">
Thanks in advance.