Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

"isLinkEnabled()" has been removed as well. Use "isEnabledInHierarchy()" as replacement. 

RadioChoice and CheckBoxMultipleChoice no longer append <br/> as suffix WICKET-5640

org.apache.wicket.markup.html.form.RadioChoice and org.apache.wicket.markup.html.form.CheckBoxMultipleChoice use empty prefix and suffix by default from now on.

It is recommended to use CSS for styling them.
To revert the old behavior for easier migration the application could use org.apache.wicket.markup.html.form.RadioChoiceWicket6Listener and org.apache.wicket.markup.html.form.CheckBoxMultipleChoiceWicket6Listener.
These component instantiation listeners are marked as deprecated and will be removed with Wicket 8.0.
Button no longer silently ignores exceptions WICKET-5235

...