I've added the "ALL" option to the PageSizeComboBox in RadGrid.
Very similar to this option: http://www.telerik.com/community/forums/aspnet/grid/how-to-add-show-all-option-in-radgrid-paging.aspx#1697877
Everything works fine, but when I select 'ALL', the navigation buttons are there.
Unfortunately, when I click on them, they crash my website.
Is it possible to disable or hide the navigation button in RADGrid Paging when the 'ALL' option is selected?
How can I access the navigation buttons in the server side code.
I tried using this as somebody in some other thread had mentioned in Item_Created Event:
if (e.Item is GridPagerItem) Button prev = ((Button)e.Item.FindControl("Button1"))
But it doesnt work. Please help.
Very similar to this option: http://www.telerik.com/community/forums/aspnet/grid/how-to-add-show-all-option-in-radgrid-paging.aspx#1697877
Everything works fine, but when I select 'ALL', the navigation buttons are there.
Unfortunately, when I click on them, they crash my website.
Is it possible to disable or hide the navigation button in RADGrid Paging when the 'ALL' option is selected?
How can I access the navigation buttons in the server side code.
I tried using this as somebody in some other thread had mentioned in Item_Created Event:
if (e.Item is GridPagerItem) Button prev = ((Button)e.Item.FindControl("Button1"))
But it doesnt work. Please help.