Hi,
I have a simple tree grid with two (root) items. Multiselection is enable. If I select both entries through UI, the “select all” checkbox is only partially check - is this expect? I would expect that the “select all” checkbox is ticked. See screenshot below.

Thanks.
var grid = new TreeGrid<>(Test.class, true);
grid.setSelectionMode(Grid.SelectionMode.MULTI);
var treeData = new TreeData<Test>();
treeData.addRootItems(new Test(1));
treeData.addRootItems(new Test(2));
grid.setDataProvider(new TreeDataProvider<>(treeData));
add(grid);
public class Test {
Integer id;
public Test(Integer id) {
this.id = id;
}
public Integer getId() {
return id;
}
}