Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
I am working with a RadGrid, I've followed several examples but nothing seems to work for what I want.
In my picture I show my example of what I am wanting. I want a button to appear in the header portion of the RadGrid next to Page Size.
Thanks
I could not get a button to work in the RadGrid, instead I added an asp Button, in a CommandItemTemplate, in the MasterTableView.
I had to add the option CommandItemDisplay="Top" in the MasterTableView.
I used a combination of the answers here
https://www.telerik.com/forums/how-to-add-a-custom-button-to-the-commanditem-of-my-radgrid-control-and-enable-it-to-postback-its-click-event
https://www.telerik.com/forums/radgrid-insert-button-missing
Hi Jim,
One way to achieve this scenario would be to create a Pager Template and handle the paging yourself using Commands:
<telerik:RadGrid ID="RadGrid1" runat="server" AllowPaging="True"> <MasterTableView> <PagerTemplate> <%--Your controls here including the ones that will handle paging--%> </PagerTemplate> </MasterTableView> </telerik:RadGrid>
Another option you can try is to access the PagerItem in the server side and add your custom button to it.
I advise that you review the following articles to get a better understanding on how to access the item:
Kind regards, Attila Antal Progress Telerik