Package io.jmix.flowui.kit.component
Interface SupportsUserAction<V>
- Type Parameters:
V
- the component value type
- All Known Subinterfaces:
EntityMultiPickerComponent<E>
,EntityPickerComponent<E>
,PickerComponent<V>
- All Known Implementing Classes:
ComboBoxPicker
,EntityComboBox
,EntityPicker
,JmixMultiSelectComboBoxPicker
,JmixMultiValuePicker
,JmixValuePicker
,MultiSelectComboBoxPicker
,MultiValuePicker
,ValuePicker
,ValuePickerBase
public interface SupportsUserAction<V>
Interface to be implemented by UI components, which provide an API that pretends
that the action was invoked by the user on the client side.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setValueFromClient
(V value) Sets the value of this component as if the user had set it, i.e.
-
Method Details
-
setValueFromClient
Sets the value of this component as if the user had set it, i.e.HasValue.ValueChangeEvent.isFromClient()
returnstrue
.- Parameters:
value
- the new value
-