Is it possible to repeat the Grid Column Headers on each page but not repeat the header.
I have created a header that has the report Title and I only want it on the first page but I would like to repeat the column headers on every page.
Thanks
Is this a feature that maybe added in the future, as it is a waste of paper repeating the report Title and Criteria on each page for my customer.
|
public async Task ToolbarClickHandler(Syncfusion.Blazor.Navigations.ClickEventArgs args)
{
if (args.Item.Id == "Grid_pdfexport") //Id is combination of Grid's ID and itemname
{
//instaed of calling inbuilt Grid’s PdfExport method, customize and generate pdf using Pdf library.
PdfDocument doc = new PdfDocument();
...
...
}
}
|