Interface DetailsOpenCloseServerRpc
- All Superinterfaces:
Serializable,com.vaadin.shared.communication.ServerRpc
public interface DetailsOpenCloseServerRpc
extends com.vaadin.shared.communication.ServerRpc
Handles the expansion and collapsing of the detailsrow. It is necessary
to do that on server-side to keep the details-states of client and server-side
synced.
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetDetailsVisible(int rowIndex, boolean visible) Sets the details of a row visible or hidden.
-
Method Details
-
setDetailsVisible
void setDetailsVisible(int rowIndex, boolean visible) Sets the details of a row visible or hidden.- Parameters:
rowIndex- the rowIndex of the row, this is the rowIndex of an IndexedContainer, this is NOT the rowId (= id in the container) or the rowKey (= internal key in client side grid implementation)visible- set the details to visible (= true) or hidden (= false)
-