Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: WICKET-5198 eventPropagation

...

This is done to make it more consistent with JavaScript API.

org.apache.wicket.ajax.attributes.AjaxRequestAttributes#eventPropagation is now BUBBLE by default WICKET-5198

This is done to make it more consistent with JavaScript API.

Behavior changes

org.apache.wicket.request.Url#getQueryString WICKET-4664

...

Code Block
borderStylesolid
attributes.setPreventDefault(true);
Ajax behaviors let JavaScript events bubble by default WICKET-5198

If JavaScript events should not bubble then use:

Code Block
borderStylesolid

attributes.setEventPropagation(EventPropagation.STOP);

or:

Code Block
borderStylesolid

attributes.setEventPropagation(EventPropagation.STOP_IMMEDIATE);

Dependency updates

All libraries on which Wicket modules depend are updated to their latest stable versions.
The most notable ones are:

...