com.vaadin.shared.ui.treegrid.

Interface TreeGridClientRpc

  • All Superinterfaces:

    ClientRpc, Serializable


    public interface TreeGridClientRpc
    extends ClientRpc

    Server-to-client RPC interface for the TreeGrid component.

    Since:

    8.1

    Author:

    Vaadin Ltd

    • Method Summary

      All Methods
      Modifier and Type Method and Description
      void clearPendingExpands()

      Clear all pending expands from the client.

      void setCollapsed(List<String> keys)

      Inform the client that a list of items with the given keys have been collapsed by the server.

      void setExpanded(List<String> keys)

      Inform the client that a list of items with the given keys have been expanded by the server.

    • Method Detail

      • setExpanded

        void setExpanded(List<String> keys)

        Inform the client that a list of items with the given keys have been expanded by the server.

        Parameters:

        keys - the communication keys of the expanded items

      • setCollapsed

        void setCollapsed(List<String> keys)

        Inform the client that a list of items with the given keys have been collapsed by the server.

        Parameters:

        keys - the communication keys of the collapsed items

      • clearPendingExpands

        void clearPendingExpands()

        Clear all pending expands from the client.