Table sub menu doesn't work on mobile
kirkey opened this issue · 3 comments
kirkey commented
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.
neozhu commented
try upgrading mudblazor:
<PackageReference Include="MudBlazor" Version="6.0.14" />
jcarlosmanuel commented
I have tried with version 6.0.14 and with 6.0.19 and it still does not work
jcarlosmanuel commented
I found this solution to add the same onclick event to the ontouch event and I tried it and it works
you have to add to the edit and delete buttons
<MudMenuItem @ontouchstart="@(() => InvokeModal(context))" @onclick="@(() => InvokeModal(context))">@L["Edit"]</MudMenuItem>