We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5edd88c commit 491b74bCopy full SHA for 491b74b
src/main/java/com/flowingcode/vaadin/addons/gridhelpers/GridRadioSelectionColumn.java
@@ -26,6 +26,8 @@
26
import com.vaadin.flow.component.Tag;
27
import com.vaadin.flow.component.dependency.JsModule;
28
import com.vaadin.flow.component.dependency.NpmPackage;
29
+import com.vaadin.flow.component.dependency.Uses;
30
+import com.vaadin.flow.component.radiobutton.RadioButtonGroup;
31
32
/**
33
* Server side implementation for the flow specific grid radio selection column.
@@ -34,6 +36,7 @@
34
36
@NpmPackage(value = "@vaadin/polymer-legacy-adapter", version = "24.3.2")
35
37
@JsModule("@vaadin/polymer-legacy-adapter/style-modules.js")
38
@JsModule("./fcGridHelper/grid-flow-radio-selection-column.js")
39
+@Uses(RadioButtonGroup.class)
40
public class GridRadioSelectionColumn extends Component implements HasStyle {
41
42
0 commit comments