Wicket.Event.add() is undefined

75 Views Asked by At

While migrating from Wicket 7 to Wicket 8, following official guidelines and fixing all compiling issues, as well as all the test that are failing, there was an interesting removal that was not documented anywhere.

`

JavaScriptResourceReference wicketEvent = (JavaScriptResourceReference) getJavaScriptLibrarySettings().getWicketEventReference();

`

When running the application we have to check whether any of the new changes affect use cases, I found out that multiple parts are not loading due to this error:

enter image description here

Which points to this snippet of code which I assume is from the framework: enter image description here

I have tried searching for this on multiple platforms but it is not documented at all. I hope I am not on a wrong track.

getJavaScriptLibrarySettings().setJQueryReference(JQueryResourceReference.getV2());
        JavaScriptResourceReference ajaxJquery = (JavaScriptResourceReference) getJavaScriptLibrarySettings().getWicketAjaxReference();
        JavaScriptResourceReference scrolling = new JavaScriptResourceReference(ScrollingResourceReference.class, "scrolling.js");

        getResourceBundles().addJavaScriptBundle(EcareReference.class, "ecare-wicket.js", ajaxJquery, scrolling,
                new LazyLoadingResourceReference());

Here is the context in which I use that snippet.

1

There are 1 best solutions below

2
On

wicket-event.js has been merged to wicket-ajax.js!

I guess you need to replace Event with Ajax in:

JavaScriptResourceReference wicketEvent = (JavaScriptResourceReference) getJavaScriptLibrarySettings().getWicketEventReference();

but it is not clear how exactly you use it from that single line.

Wicket Ajax behaviors should contribute WicketAjaxReference by default, so the JavaScript problems might be caused by something else.

Update: Try to change the order of the bundle items. Currently it is:

 EcareReference.class, "ecare-wicket.js", ajaxJquery, ...

Most probably the bug is that ecare-wicket.js depends on wicket-ajax.js, so their order should be:

 EcareReference.class, ajaxJquery, "ecare-wicket.js", ...