-
-
Notifications
You must be signed in to change notification settings - Fork 530
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tooltip on focus #1313
Comments
I could also implement it and create PR if you explain me, where to implement. :) |
Seems like a cool feature to have. In case you're going to implement I think you need to focus on code in Other than that you will have to probably create separate CSS classes for each of the enums and then apply them in |
Much easier: For me it would be enough to add the pseudo-classes Do you want to add this or shall I and create PR or should we create the complex behavior proposed in the first post? |
Should be a lot easier with the new tooltip. Going on the list. |
Is your feature request related to a problem? Please describe.
Bootstrap offers option to show Tooltip triggered by focus. How can this be done with Blazorize?
Describe the solution you'd like
Tooltip has a Property
Trigger
of flags enum typeTooltipTrigger
which can behover
,focus
or both (defaulthover
).Alternative solution
Provide Methods
Show()
andHide()
to Tooltip, which could be called manually in afocus
-EventHandler. Currently I setAlwaysActive
, but I get warning "Component parameter 'AlwaysActive' should not be set outside of its component."The text was updated successfully, but these errors were encountered: