You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into one issue where in VaadinSupport.onRouteRequest, I was always getting a 404 for my Vaadin app page. Upon investigation, it appeared that super.onRouteRequest was returning a Some for the 404, as opposed a None which would have triggered the code in the orElse. I hacked it by creating my own VaadinSupport and putting the check for a Vaadin page/app first
So that worked in that my onVaadinRequest now finds my app in the mappings and attempts to handle it. I'm now getting this exception. And I've no idea what Vaadin is unhappy about
[ServiceException: com.vaadin.ui.UIDetachedException: Cannot set the push mode for a detached UI]
The text was updated successfully, but these errors were encountered:
Hi, I'm trying to run this with Play 2.2.3 and Vaadin/Scaladin/etc as follows
"com.vaadin" % "vaadin-server" % "7.3.0",
"com.vaadin" % "vaadin-client-compiled" % "7.3.0",
"com.vaadin" % "vaadin-themes" % "7.3.0",
"org.vaadin.addons" % "scaladin" % "3.0.0",
"org.vaadin.playintegration" %% "play-vaadin-integration" % "0.1-SNAPSHOT"
I ran into one issue where in VaadinSupport.onRouteRequest, I was always getting a 404 for my Vaadin app page. Upon investigation, it appeared that super.onRouteRequest was returning a Some for the 404, as opposed a None which would have triggered the code in the orElse. I hacked it by creating my own VaadinSupport and putting the check for a Vaadin page/app first
So that worked in that my onVaadinRequest now finds my app in the mappings and attempts to handle it. I'm now getting this exception. And I've no idea what Vaadin is unhappy about
[ServiceException: com.vaadin.ui.UIDetachedException: Cannot set the push mode for a detached UI]
The text was updated successfully, but these errors were encountered: