All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridDataItem)
GridDataItem item = (GridDataItem)e.Item;
HyperLink link = (HyperLink)item[
"GridHyperLinkColumn"
].Controls[0];
link.CssClass =
"remove"
;
}
<style type=
"text/css"
>
.remove
text-decoration
:
none
</style>