Replies: 2 comments
|
You can use it like this: <EntityTable TEntity="ProductDto" TId="int" TRequest="UpdateProductRequest" Context="@Context"
OnDetails="@(product => Navigation.NavigateTo($"/products/{product.Id}"))">
...
</EntityTable>In this case, it will simply navigate to the specified url, but you could also show a popup for instance. |
0 replies
|
Thanks.
…On Sun, Jul 16, 2023, 4:14 AM fretje ***@***.***> wrote:
You can use it like this:
<EntityTable TEntity="ProductDto" TId="int" TRequest="UpdateProductRequest" ***@***.***"
OnDetails="@(product => Navigation.NavigateTo($"/products/{product.Id}"))">
...
</EntityTable>
In this case, it will simply navigate to the specified url, but you could
also show a popup for instance.
—
Reply to this email directly, view it on GitHub
<#15 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AX6U3QY44AH2WICKTQZSQQ3XQPEKBANCNFSM6AAAAAA2KXLKPI>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Do we have a working example with this feature? Can someone please help me with this? I can't find the complete code for this.
@if (OnDetails.HasDelegate)
{
<HeroTooltipButton Tooltip="@l["Details"]" Icon="@Icons.Material.Filled.MoreHoriz"
OnClick="() => OnDetails.InvokeAsync(context)" />
}
All reactions