Hi,
I'm new to the grid control/asp.net programming and need this solution rather urgently, help is appreciated.
I'm creating a link URL in my table but only want the field to have a hotlink if it is active, else show data and no hotlink.
how do i do this?
the item template is:
<telerik:GridTemplateColumn ItemStyle-HorizontalAlign="Right" HeaderText="Matches"
DataField="Matches">
<ItemTemplate>
<div class="grid_4 center">
<a href="<%#Eval("MatchesURL") %>" class="blueLink" style="font-weight:bold;">
<%#Eval("Matches")%>
</a>
</div>
</ItemTemplate>
</telerik:GridTemplateColumn>