Uses of Class
com.vaadin.flow.component.ClickEvent
-
-
Uses of ClickEvent in com.vaadin.flow.component
Method parameters in com.vaadin.flow.component with type arguments of type ClickEvent Modifier and Type Method Description default Registration
ClickNotifier. addClickListener(ComponentEventListener<ClickEvent<T>> listener)
Adds a click listener to this component. -
Uses of ClickEvent in com.vaadin.flow.component.button
Constructor parameters in com.vaadin.flow.component.button with type arguments of type ClickEvent Constructor Description Button(Component icon, ComponentEventListener<ClickEvent<Button>> clickListener)
Creates a button with an icon and a listener for click events.Button(String text, ComponentEventListener<ClickEvent<Button>> clickListener)
Creates a button with a text and a listener for click events.Button(String text, Component icon, ComponentEventListener<ClickEvent<Button>> clickListener)
Create a button with a text, an icon and a listener for click events. -
Uses of ClickEvent in com.vaadin.flow.component.contextmenu
Method parameters in com.vaadin.flow.component.contextmenu with type arguments of type ClickEvent Modifier and Type Method Description MenuItem
ContextMenu. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
MenuItem
ContextMenu. addItem(String text, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
MenuItem
HasMenuItems. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
Adds a new item component with the given component and click listener to the context menu overlay.MenuItem
HasMenuItems. addItem(String text, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
Adds a new item component with the given text content and click listener to the context menu overlay.I
MenuManager. addItem(Component component, ComponentEventListener<ClickEvent<I>> clickListener)
Adds a component as a menu item with a click listener.I
MenuManager. addItem(String text, ComponentEventListener<ClickEvent<I>> clickListener)
Adds a text as a menu item with a click listener.MenuItem
SubMenu. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
MenuItem
SubMenu. addItem(String text, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
-
Uses of ClickEvent in com.vaadin.flow.component.grid
Subclasses of ClickEvent in com.vaadin.flow.component.grid Modifier and Type Class Description class
ItemClickEvent<T>
Event fired when a Grid item is clicked.class
ItemDoubleClickEvent<T>
Event fired when a Grid item is double clicked. -
Uses of ClickEvent in com.vaadin.flow.component.html
Constructor parameters in com.vaadin.flow.component.html with type arguments of type ClickEvent Constructor Description NativeButton(String text, ComponentEventListener<ClickEvent<NativeButton>> clickListener)
Creates a button with the given text and click listener. -
Uses of ClickEvent in com.vaadin.flow.component.menubar
Method parameters in com.vaadin.flow.component.menubar with type arguments of type ClickEvent Modifier and Type Method Description MenuItem
MenuBar. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
Creates a newMenuItem
component with the provided click listener and adds it to the root level of this menu bar.MenuItem
MenuBar. addItem(String text, ComponentEventListener<ClickEvent<MenuItem>> clickListener)
Creates a newMenuItem
component with the provided text content and click listener and adds it to the root level of this menu bar.
-