Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Table of Contents
indent20px
styledisc

This page lists the tasks the Wicket team agreed to implement for Wicket 7.0.

...

Code Block
titleMyPage.java
borderStylesolid

  Component<Entity> c = new SomeComponent<>("id", model);

...

PageParameters improvements
  • read-only Dropped
  • make it possible to differentiate between named

...

Assignee:
Status: Not started

...

otherwise referencing the component as needed in throttle settings is annoying

Code Block

queryField.add(new AjaxFormComponentUpdatingBehavior("onkeydown") {
	protected void updateAjaxAttributes(AjaxRequestAttributes attributes) {
		attributes.setThrottlingSettings(new ThrottlingSettings(queryField.getMarkupId(), Duration.seconds(1)));
----------------------------------------------------------------------------^

...

JavaScriptResourceReference#getDependencies() should return an appendable List

so we can do

Code Block

class MyReference extends JavascriptReference {
  getDependencies() { List<?> list=super.getDependencies(); list.add(...); return list; }
}

...

Assignee: ivaynberg
Status: Not started Dropped
Jira: WICKET-5255

cdi 1.1 upgrade

wicket-cdi should use cdi 1.1 which should remove dependency onto seam-conversation module.

Assignee: ivaynbergpapegaaji
Status: Done
Jira: WICKET-4951

Upgrade dependencies to their latest stable version

...

  • getApplication().getCssSettings().setSortOrderDownClass("sort-order-down");

Assignee: mgrigorov
Status: not started Done
Jira: WICKET-5257

Remove deprecated in Wicket 6.x classes and methods

...