fullstackhero / blazor-wasm-boilerplate

Clean Architecture Boilerplate Template for .NET 6.0 Blazor WebAssembly built for FSH WebAPI with the goodness of MudBlazor Components.

Home Page:https://fullstackhero.net/blazor-webassembly-boilerplate/general/getting-started/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Table sub menu doesn't work on mobile

kirkey opened this issue · comments

Have anyone tested out the issue, all submenu or dropdown menu doesn't work when using mobile phones and tablets. If anyone have experience and how to fix this, please teach us how.

try upgrading mudblazor:

<PackageReference Include="MudBlazor" Version="6.0.14" />
commented

I have tried with version 6.0.14 and with 6.0.19 and it still does not work

commented

I found this solution to add the same onclick event to the ontouch event and I tried it and it works

MudBlazor/MudBlazor#4467

you have to add to the edit and delete buttons

 <MudMenuItem @ontouchstart="@(() => InvokeModal(context))" @onclick="@(() => InvokeModal(context))">@L["Edit"]</MudMenuItem>