<telerik:RadGrid ID="RadGridViewResults" runat="server" Width="100%" ShowStatusBar="true"
AutoGenerateColumns="False" PageSize="7" AllowSorting="True" AllowMultiRowSelection="False"
AllowPaging="True" OnNeedDataSource="RadGridViewResults_OnNeedDataSource" OnItemDataBound="RadGridViewResults_OnItemDataBound">
<PagerStyle Mode="NumericPages"></PagerStyle>
<MasterTableView Width="100%" AllowMultiColumnSorting="True">
<Columns>
<telerik:GridTemplateColumn HeaderStyle-Width="1%" ItemStyle-Width="1%">
<ItemTemplate>
<asp:Image ID="imgError" Visible="false" ToolTip="Error" runat="server" ImageUrl="../../images/Test%20Scripts/error.png" />
<asp:Image ID="imgSuccess" Visible="false" ToolTip="Success" runat="server" ImageUrl="../../images/Test%20Scripts/success.png" />
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridBoundColumn SortExpression="ScriptResult" HeaderText="Script Result"
DataField="ScriptResult">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn SortExpression="UserName" HeaderText="Tested By" DataField="UserName">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn SortExpression="LastRunOn" HeaderText="Tested On" DataField="LastRunOn">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
Im using this,now i want to find control of those images on click of a button which is used in other normal grid,and need to make those images visible on selected condition.