Hi, I have a Context Menu that doesn't show up when screen is small and Have Lot of Items
For example, I have several items

And they show up normally, when I change to a small screen, the context menu simple don't show up, there is no errors.
Here's my code:
<SfContextMenu Target="#divImagePreview" TValue="MenuItem" EnableScrolling="true">
<MenuEvents TValue="MenuItem" ItemSelected="@OnContextSelected" ></MenuEvents>
<MenuItems>
@foreach(InformacaoCoordenadaViewModel info in TipoCobranca.Identificadores)
{
<MenuItem Text="@info.Tipo.GetDisplayName()" Id="@info.Tipo.ToString()"></MenuItem>
}
</MenuItems>
</SfContextMenu>
EnableScrolling didn't change any thing
I'm using