Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: AllVisitFilter removed

...

In Wicket 6 a new setting has been added to ModalWindow - org.apache.wicket.extensions.ajax.markup.html.modal.ModalWindow#showUnloadConfirmation(). In Wicket 7 the new Java API should be used instead of dealing with the JavaScript property Wicket.Window.unloadConfirmation.

AllVisitFilter has been removed.

Use IVisitFilter.ANY instead.

Using keyboard UP and DOWN keys will loop thru the AutoCompleter's options WICKET-5275

If the currently selected item is the first one and the user uses KEY_UP then the selection will move to the last option. Similarly for KEY_DOWN - if the selected option is the last one then using DOWN key will move the selection to the first one.

...