Table of Contents |
|
|
This page lists the tasks the Wicket team agreed to implement for Wicket 7.0.
...
Code Block |
| borderStyle |
solid |
| title |
MyPage.java |
|
Component<Entity> c = new SomeComponent<>("id", model);
|
...
...
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)));
----------------------------------------------------------------------------^
|
...
_javascript_ResourceReference#getDependencies() should return an appendable List
so we can do
Code Block |
class MyReference extends _javascript_Reference {
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
...