We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
Uses of Interface
com.vaadin.flow.router.HighlightAction
Packages that use HighlightAction
-
Uses of HighlightAction in com.vaadin.flow.router
Methods in com.vaadin.flow.router that return HighlightActionModifier and TypeMethodDescriptionRouterLink.getHighlightAction()
Gets the
HighlightAction
of this link.static <C extends HasElement>
HighlightAction<C>HighlightActions.none()
An action which does nothing, regardless of the highlight state.
static <C extends HasElement>
HighlightAction<C>HighlightActions.toggleAttribute
(String attribute) An action which toggles the target's
attribute
based on its highlight state.static <C extends HasStyle>
HighlightAction<C>HighlightActions.toggleClassName
(String className) An action which toggles
className
class on the target based on its highlight state.static <C extends HasElement>
HighlightAction<C>HighlightActions.toggleTheme
(String theme) An action which toggles
theme
on the target based on its highlight state.Methods in com.vaadin.flow.router with parameters of type HighlightActionModifier and TypeMethodDescriptionvoid
RouterLink.setHighlightAction
(HighlightAction<RouterLink> highlightAction) Sets the
HighlightAction
of this link, which will be performed with the evaluation of this link'sHighlightCondition
.