Interface GridSelectionModel<T>

    • Nested Class Summary

      • Nested classes/interfaces inherited from interface com.vaadin.flow.data.selection.SelectionModel

        com.vaadin.flow.data.selection.SelectionModel.Multi<C extends com.vaadin.flow.component.Component,​T extends Object>, com.vaadin.flow.data.selection.SelectionModel.Single<C extends com.vaadin.flow.component.Component,​T extends Object>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void deselectFromClient​(T item)
      Handles the deselection of an item that originates from the client.
      void selectFromClient​(T item)
      Handles the selection of an item that originates from the client.
      • Methods inherited from interface com.vaadin.flow.data.selection.SelectionModel

        addSelectionListener, deselect, deselectAll, getFirstSelectedItem, getSelectedItems, isSelected, select
    • Method Detail

      • selectFromClient

        void selectFromClient​(T item)
        Handles the selection of an item that originates from the client.
        Parameters:
        item - the item being selected
      • deselectFromClient

        void deselectFromClient​(T item)
        Handles the deselection of an item that originates from the client.
        Parameters:
        item - the item being deselected