Tuesday, October 12, 2010

Invoke a javascript post Ajax call

I had a requirement where I had to invoke a javascript method after the ajax call.
I used the following method at the end of tht html.

It resolved the issue.


<script type="text/javascript">               Wicket.Ajax.registerPostCallHandler(function() {               dummyMethod();            });          </script>

No comments:

Post a Comment