Interface Grid.SelectionModel

    • Method Detail

      • isSelected

        boolean isSelected​(Object itemId)
        Deprecated.
        Checks whether an item is selected or not.
        Parameters:
        itemId - the item id to check for
        Returns:
        true if the item is selected
      • getSelectedRows

        Collection<Object> getSelectedRows()
        Deprecated.
        Returns a collection of all the currently selected itemIds.
        Returns:
        a collection of all the currently selected itemIds
      • setGrid

        void setGrid​(Grid grid)
        Deprecated.
        Injects the current Grid instance into the SelectionModel. This method should usually call the extend method of AbstractExtension.

        Note: This method should not be called manually.

        Parameters:
        grid - the Grid in which the SelectionModel currently is, or null when a selection model is being detached from a Grid.
      • reset

        void reset()
        Deprecated.
        Resets the SelectiomModel to an initial state.

        Most often this means that the selection state is cleared, but implementations are free to interpret the "initial state" as they wish. Some, for example, may want to keep the first selected item as selected.