The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
BSBalaji Sekar Syncfusion Team August 8, 2019 12:29 PM UTC
Hi Anup,
Thanks for your patience,
We have created a sample with your requirement and you can bind the custom button on toolbar using following code snippet. We have already discussed about the custom items rendering on toolbar in our Help Documentation and we have find the Grid selected records details in toolbarClick event of EJ2 Grid. Please refer the below code example, sample and Help Documentation.
[app.component.ts]
this.childGrid = {
dataSource: orderDatas,
queryString: 'EmployeeID',
allowPaging: true,
toolbar: [{ text: 'Click', tooltipText: 'Click', prefixIcon: 'e-expand', id: 'Click' }],// we have bind the custom button on toolbar
toolbarClick: function (args) {
if (args.item.id === 'Click') {
varselectedRecord = this.getSelectedRecords();// we have get the selected records details