Hi,
I have a RadGrid with a HyperLinkColumn which I want formatted as blue with no text decoration (i.e. no underline).
I have tried:
<telerik:GridHyperLinkColumn HeaderText="A" UniqueName="B" Text="C" DataNavigateUrlFormatString="D.aspx?Reference={0}" DataNavigateUrlFields="E" ItemStyle-ForeColor="Blue" ItemStyle-Font-Underline="false">
<ItemStyle HorizontalAlign="Left" />
</telerik:GridHyperLinkColumn>
I have also tried:
<
telerik:GridHyperLinkColumn HeaderText="A" UniqueName="B" Text="C" DataNavigateUrlFormatString="D.aspx?Reference={0}" DataNavigateUrlFields="E">
<ItemStyle ForeColor="Blue" />
</telerik:GridHyperLinkColumn>
Is there anything additional to the above that needs to be set in order to make these properties take effect?
Thanks.