Table of Contents | ||||
---|---|---|---|---|
|
This page lists the tasks the Wicket team agreed to implement for Wicket 7.0.
...
Assignee: mgrigorov
Status: Done
Generics for org.apache.wicket.Component
Using Java 7 will allow to use the "diamonds operator", i.e.
Code Block | ||||
---|---|---|---|---|
| ||||
Component<Entity> c = new SomeComponent<>("id", model);
|
Assignee:
Status: Not started Dropped
Jira: WICKET-4930
Servlet 3 as a minimum
...
Assignee: mgrigorov
Status: Done
Jira: WICKET-5167
Update the quickstart archetype as well.
Should we use @WebFilter for the quickstart ?!
Assignee:
Status:
Jira:
Tickets in Jira with "Fix Version" = 7.0
PageParameters improvements
- read-only Dropped
- make it possible to differentiate between named
...
- path parameters and query string ones.
See WICKET-4594, http://markmail.org/thread/cc7yjwshqugj4wic, WICKET-4441
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: 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: Done
Jira: WICKET-5257
Remove deprecated in Wicket 6.x classes and methods
For example:
- the old Swing based implementation of Tree
- the backward compatibility helper methods in AbstractDefaultAjaxBehavior
- WicketTester#startComponent()
- ...