Posted 02 Apr 2013 Link to this post
Posted 03 Apr 2013 Link to this post
void
radGridView1_CellFormatting(
object
sender, Telerik.WinControls.UI.CellFormattingEventArgs e)
{
GridHyperlinkCellElement cell = e.CellElement
as
GridHyperlinkCellElement;
if
(cell!=
null
)
cell.ContentElement.ForeColor = Color.Blue;
}
Posted 05 Apr 2013 Link to this post