I have Javascript method, that performs some business logic at client end and returns a values. Now I need this value in my wicket page. What is the best way to go about this?
P.S. I am using Wicket 7.
I have Javascript method, that performs some business logic at client end and returns a values. Now I need this value in my wicket page. What is the best way to go about this?
P.S. I am using Wicket 7.
You could write an AbstractAjaxBehaviour
that calls your javascript function and passes it back with ajax to the callbackUrl
See the answer here here for more detail.
In the respond(AjaxRequestTarget target)
you can update any component in the page that need updating.
For example, you could run a behavior that tests WebGL support via Javascript, pass it back to the Page
via the Behavior
and use the value to replace a placeholder or fallback Panel
with a fancy WebGL
version.
You might consider to use a custom resource. Once you have collected the user data with JavaScript, you can send them via ajax to the custom resource mounted at a specific path. Additional data processing can be done in the custom resource and you can display the result once the ajax request has finished.