All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
<
telerik:GridButtonColumn
Text
=
"Delete"
CommandName
UniqueName
"DeleteButton"
>
</
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridDataItem)
GridDataItem item = (GridDataItem)e.Item;
LinkButton dellnk = (LinkButton)item[
].Controls[0];
(
Your condition)
dellnk.Visible =
false
;
// Hide the delete button
}