Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Hi,
Please take a look into the following code snippet I tried to remove the Refresh button in code behind. C#:
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridCommandItem)
GridCommandItem item = (GridCommandItem)e.Item;
//hide refresh linkbutton
((LinkButton)item.FindControl(
"RebindGridButton"
)).Visible =
false
;
//hide refresh icon
((Button)item.FindControl(
"RefreshButton"
}
Regards, Princy.