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 RegistrationClickNotifier. addClickListener(ComponentEventListener<ClickEvent<T>> listener)Adds a click listener to this component.default RegistrationClickNotifier. addDoubleClickListener(ComponentEventListener<ClickEvent<T>> listener)Adds a double click listener to this component.default RegistrationClickNotifier. addSingleClickListener(ComponentEventListener<ClickEvent<T>> listener)Adds a single 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 RegistrationGeneratedVaadinContextMenu. addClickListener(ComponentEventListener<ClickEvent<R>> listener)Deprecated.since v23.3, generated classes will be removed in v24.MenuItemContextMenu. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)MenuItemContextMenu. addItem(String text, ComponentEventListener<ClickEvent<MenuItem>> clickListener)MenuItemHasMenuItems. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)Adds a new item component with the given component and click listener to the context menu overlay.MenuItemHasMenuItems. 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.IMenuManager. addItem(Component component, ComponentEventListener<ClickEvent<I>> clickListener)Adds a component as a menu item with a click listener.IMenuManager. addItem(String text, ComponentEventListener<ClickEvent<I>> clickListener)Adds a text as a menu item with a click listener.MenuItemSubMenu. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)MenuItemSubMenu. 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 classItemClickEvent<T>Event fired when a Grid item is clicked.classItemDoubleClickEvent<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 MenuItemMenuBar. addItem(Component component, ComponentEventListener<ClickEvent<MenuItem>> clickListener)Creates a newMenuItemcomponent with the provided click listener and adds it to the root level of this menu bar.MenuItemMenuBar. addItem(Component component, String tooltipText, ComponentEventListener<ClickEvent<MenuItem>> clickListener)Creates a newMenuItemcomponent with the provided click listener and the tooltip text and adds it to the root level of this menu bar.MenuItemMenuBar. addItem(String text, ComponentEventListener<ClickEvent<MenuItem>> clickListener)Creates a newMenuItemcomponent with the provided text content and click listener and adds it to the root level of this menu bar.MenuItemMenuBar. addItem(String text, String tooltipText, ComponentEventListener<ClickEvent<MenuItem>> clickListener)Creates a newMenuItemcomponent with the provided text content and the tooltip text and click listener and adds it to the root level of this menu bar.
-