All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_ItemDataBound(
object
sender, Telerik.Web.UI.GridItemEventArgs e)
{
if
(e.Item
is
GridPagerItem)
GridPagerItem item = (GridPagerItem)e.Item;
RadComboBox combo = (RadComboBox)item.FindControl(
"PageSizeComboBox"
);
combo.Visible =
false
;
Label lbl = (Label)item.FindControl(
"ChangePageSizeLabel"
lbl.Visible =
}