All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
<
telerik:GridEditCommandColumn
UniqueName
=
"GridEditCommandColumn1"
></
>
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridDataItem)
GridDataItem item = (GridDataItem)e.Item;
int
index = item.ItemIndex;
//Row Index
(index==3)
//Your condition
(item[
].Controls[0]
as
LinkButton).Visible =
true
;
}
else
false