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.client.connectors.data.
Class HierarchicalDataCommunicatorConnector
- java.lang.Object
-
- com.vaadin.client.ui.AbstractConnector
-
- com.vaadin.client.extensions.AbstractExtensionConnector
-
- com.vaadin.client.connectors.data.DataCommunicatorConnector
-
- com.vaadin.client.connectors.data.HierarchicalDataCommunicatorConnector
-
All Implemented Interfaces:
com.google.gwt.event.shared.EventHandler
,StateChangeEvent.StateChangeHandler
,ServerConnector
,Connector
,Serializable
public class HierarchicalDataCommunicatorConnector extends DataCommunicatorConnector
A connector for HierarchicalDataCommunicator class.
Since:
8.1
Author:
Vaadin Ltd
See Also:
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.vaadin.client.connectors.data.DataCommunicatorConnector
DataCommunicatorConnector.VaadinDataSource
-
-
Constructor Summary
Constructors Constructor Description HierarchicalDataCommunicatorConnector()
-
Method Summary
All Methods Modifier and Type Method Description protected void
onRowDataUpdate(elemental.json.JsonObject newRowData, elemental.json.JsonObject oldRowData)
Called row updates from server side.
-
Methods inherited from class com.vaadin.client.connectors.data.DataCommunicatorConnector
extend, getState
-
Methods inherited from class com.vaadin.client.extensions.AbstractExtensionConnector
setParent
-
Methods inherited from class com.vaadin.client.ui.AbstractConnector
addStateChangeHandler, addStateChangeHandler, createState, doInit, ensureHandlerManager, fireEvent, forceStateChange, getChildren, getConnection, getConnectorId, getParent, getResourceUrl, getRpcImplementations, getRpcProxy, getStateType, getTag, hasEventListener, init, isEnabled, onStateChanged, onUnregister, registerRpc, removeStateChangeHandler, removeStateChangeHandler, setChildren, setTag, unregisterRpc, updateEnabledState
-
-
-
-
Method Detail
-
onRowDataUpdate
protected void onRowDataUpdate(elemental.json.JsonObject newRowData, elemental.json.JsonObject oldRowData)
Description copied from class:
DataCommunicatorConnector
Called row updates from server side.
This method exists for making it possible to copy data from the old object to the new one, if e.g. some data is not available in the server side when doing updates and would be missed otherwise.
Overrides:
onRowDataUpdate
in classDataCommunicatorConnector
Parameters:
newRowData
- the new row dataoldRowData
- the previous row data
-
-