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 9e6366f commit 828ae0dCopy full SHA for 828ae0d
vaadin-grid-filter-demo/src/main/java/software/xdev/vaadin/ui/DemoView.java
@@ -30,7 +30,8 @@ public DemoView()
30
.withFilterableField("First Name", Person::firstName, String.class)
31
.withFilterableField("Birthday", Person::birthday, LocalDate.class)
32
.withFilterableField("Married", Person::married, Boolean.class)
33
- .withFilterableField("Department", Person::department, Department.class);
+ .withFilterableField("Department", Person::department, Department.class)
34
+ .withMaxNestedDepth(5);
35
36
final Details details = new Details("Filter data");
37
details.addThemeVariants(DetailsVariant.FILLED);
0 commit comments