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
JavaScriptBootstrapUI puts the view in a wrapper appended as a virtualChild.
We might override the getElement() to return the wrapper, it apparently works, but breaks $server methods in client side.
After a further investigation, I saw that the problem is that gwt ServerEventObject class puts the $server method in body (put attention in the initPromiseHandler) whereas calls to this method from server side are bound to the wrapper element (see PublishedServerEventHandlerRpcHandler.invokeMethod).
The text was updated successfully, but these errors were encountered:
JavaScriptBootstrapUI puts the view in a wrapper appended as a virtualChild.
We might override the
getElement()
to return the wrapper, it apparently works, but breaks$server
methods in client side.After a further investigation, I saw that the problem is that gwt
ServerEventObject
class puts the$server
method inbody
(put attention in theinitPromiseHandler
) whereas calls to this method from server side are bound to the wrapper element (seePublishedServerEventHandlerRpcHandler.invokeMethod
).The text was updated successfully, but these errors were encountered: