vVadin は初めてです。2 つの列を持つグリッドで 1 つのプロジェクトを作成しましたが、1 つの Textfield 列と 1 つのチェックボックス列を追加し、ヘッダー チェックボックスをクリックしたときにすべてのチェックボックスをオンにしたいと考えています。
List<Person> people = Arrays.asList(
new Person("Nicolaus Copernicus", 15),
new Person("Galileo Galilei", 15),
new Person("Johannes Kepler", 15));
TextField txt =new TextField();
CheckBox chk=new CheckBox();
// Create a grid bound to the list
Grid<Person> grid = new Grid<>();
grid.setItems(people);
grid.addColumn(Person::getName).setCaption("Name");
grid.addColumn(Person::getAge).setCaption("Year of birth");
grid.addColumn(Person-> new TextField());
layout.addComponents(grid);
setParent(layout);
誰でも私に提案できますか.これらの2つの列を追加する方法