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.
I am creating a grid using the Syncfusion Grid Component. I am familiar with the recordDoubleClick event that can be triggered when double-clicking a cell in the grid. As far as I know this event is only binded to the grid and not to sections external to the grid. I would like to be able to trigger a function upon double-clicking a row in the aggregates section of the grid. Is this achievable?
Please find a working example of the grid in the following StackBlitz project :
By default recordDoubleClick event is triggered when we double click the Grid content rows only (it is not triggered the aggregate cell). So we have achieved your requirement by using the following way.
We have bind the ‘dblclick’ event in the document.body through the Grid ‘created’ event. Please find the code example and sample for your reference.