I want to access column inside Celltemplate of my Grid View
Code :
<
telerikGridView:GridViewColumn Header="Is Answered" Width="*">
<telerikGridView:GridViewColumn.CellTemplate>
<DataTemplate>
<Grid>
<TextBlock x:Name="txtIsBlank" Text=" " TextAlignment="Center" ></TextBlock>
<TextBlock x:Name="txtIsAns" Text="..." TextAlignment="Center" ></TextBlock>
<Image Source="../Resources/icon_accepted.png" Image>
</Grid>
</DataTemplate>
</telerikGridView:GridViewColumn.CellTemplate>
</telerikGridView:GridViewColumn>
As from these Three values(Textblock,and Image) only one will be visible so i want to access this column in code behind and want to set the visibility depending on the condition.
This Column is inside the 2nd level of Hierarchical Grid.
I am using WCFServices to get the data .
Please reply ASAP
Regards
Charu Pahuja
