We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.shared.ui.treegrid.
Interface TreeGridClientRpc
-
All Superinterfaces:
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.
-
-