Skip to content

Commit e7ccd6b

Browse files
mlopezFCpaodb
authored andcommitted
fix: use correct method for setting the data provider
1 parent b2acf69 commit e7ccd6b

File tree

1 file changed

+1
-1
lines changed
  • selection-grid-flow-demo/src/main/java/com/vaadin/componentfactory/selectiongrid

1 file changed

+1
-1
lines changed

selection-grid-flow-demo/src/main/java/com/vaadin/componentfactory/selectiongrid/LazyFocusView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public LazyFocusView()
3434
grid.focusOnCell(item.getValue(), personColumn);
3535
}
3636
});
37-
personComboBox.setItems(personDataProvider);
37+
personComboBox.setDataProvider(personDataProvider,null);
3838

3939
add(personComboBox);
4040
addAndExpand(grid);

0 commit comments

Comments
 (0)