Hi:
I'm new to Telerik for Blazor and was hoping to create a column of links in a Products Grid that would bring the user to the Product Details page for the particular link. In particular, I want to go the the @page "/productdetails/{ProductId}"
I'm assuming the best method is with a template? Here's what I have so far:
<GridColumns>
<GridColumn Field="ProductId" Title="Id" />
<GridColumn Field="Product" Title="User" />
<GridColumn>
<Template>
@{
<div><a href="#" @onclick="">Product Details</a></div>
//onclick go to product details page and pass parameter
}
</Template>
</GridColumn>
</GridColumns>
@page "/productdetails/{ProductId}"
Any help greatly appreciated.