hi,
I would like to show the FabMenu dynamically with the Visible property but he Visible="false" is not working. I’m using the last version.
Do you have idea?
Thank you
hi,
I would like to show the FabMenu dynamically with the Visible property but he Visible="false" is not working. I’m using the last version.
Do you have idea?
Thank you
Indeed the Visible property isn't implemented in RadzenFabMenu yet. You can do something like this as a workaround
@if (condition)
{
<RadzenFabMenu>
</RadzenFabMenu>
}
thank you, I’m using this