Class GridRadioSelectionColumn
- java.lang.Object
-
- com.vaadin.flow.component.Component
-
- com.flowingcode.vaadin.addons.gridhelpers.GridRadioSelectionColumn
-
- All Implemented Interfaces:
AttachNotifier
,DetachNotifier
,HasElement
,HasStyle
,Serializable
@Tag("grid-flow-radio-selection-column") @NpmPackage(value="@vaadin/polymer-legacy-adapter", version="24.3.2") @JsModule("@vaadin/polymer-legacy-adapter/style-modules.js") @JsModule("./fcGridHelper/grid-flow-radio-selection-column.js") public class GridRadioSelectionColumn extends Component implements HasStyle
Server side implementation for the flow specific grid radio selection column.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GridRadioSelectionColumn()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isFrozen()
Gets the this column's frozen state.void
setFrozen(boolean frozen)
Sets this column's frozen state.-
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getChildren, getElement, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onAttach, onDetach, onEnabledStateChanged, scrollIntoView, set, setElement, setId, setVisible
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
-
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
-
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
-
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
-
-
-
Method Detail
-
setFrozen
public void setFrozen(boolean frozen)
Sets this column's frozen state.- Parameters:
frozen
- whether to freeze or unfreeze this column
-
isFrozen
@Synchronize("frozen-changed") public boolean isFrozen()
Gets the this column's frozen state.- Returns:
- whether this column is frozen
-
-