public SwipeView(Component content) {
setContent(content);
}
is not calling this();, thus the SwipeViewRpc() not being created, which leads to an error similar to the following and the SwipeView not working:
Ignoring RPC call to com.vaadin.addon.touchkit.gwt.client.vcom.SwipeViewRpc.navigate[...] in connector com.vaadin.addon.touchkit.ui.SwipeView as no RPC implementation is registered
Workaround: use default-constructor and set the content afterwards or use the constructor with caption as parameter.
The constructor:
is not calling
this();
, thus the SwipeViewRpc() not being created, which leads to an error similar to the following and the SwipeView not working:Ignoring RPC call to com.vaadin.addon.touchkit.gwt.client.vcom.SwipeViewRpc.navigate[...] in connector com.vaadin.addon.touchkit.ui.SwipeView as no RPC implementation is registered
Workaround: use default-constructor and set the content afterwards or use the constructor with caption as parameter.