Skip to content

Multiselect - Checkers not visible #29

@sindrehauglum

Description

@sindrehauglum

Problem: with the extensions the checkboxes is not visible. So we can't select all
My code: (mGrid = Vaadin 8.4.0 Grid)

public B withMultiSelect() {
    TableSelectionModel<T> multiSelect = new TableSelectionModel<>();
    multiSelect.setMode(TableSelectionState.TableSelectionMode.SHIFT);
    multiSelect.setUserSelectionAllowed(true);
    multiSelect.setSelectAllCheckBoxVisibility(SelectAllCheckBoxVisibility.VISIBLE);
    mGrid.setSelectionModel(multiSelect);
    mIsMultiGrid = true;
    return (B) this;
}

Actual:
image

Expected:
image

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions