|
<SfButton OnClick="PdfExport" Content="Pdf Export"></SfButton>
<SfGrid @ref="DefaultGrid" DataSource="@Orders" AllowPdfExport="true" AllowPaging="true">
<GridColumns>
. ..
</GridColumns>
</SfGrid>
@code{
private SfGrid<Order> DefaultGrid;
. . .
public async Task PdfExport()
{
PdfExportProperties PdfProperties = new PdfExportProperties();
PdfProperties.DataSource = Orders; //assign custom datasource here
await this.DefaultGrid.PdfExport(PdfProperties); //perform export with PdfProperties
}
} |