Converting an older application into a Blazor Web Application. The older has a very basic PRINT Link as follows:
<a class="print" href="javascript:window.print()">Print</a>
Is there a way to do this same (simple and easy web page print) by using a Radzen Button? I can't seem to figure out how to do the href within the Radzen Button
Here is an example of a Radzen Button that is also on the page. This calls a function called DetailsShowStatus (C#). Is there a simple C# print option I can use? Or - can I somehow call the jscript 'window:print' from within the Radzen button?
<RadzenButton Button Text="Edit Status" Click=@(args => DetailsShowStatus(carPK)) ButtonStyle="ButtonStyle.Primary" ></RadzenButton>