On Mon, Jun 16, 2014 at 11:36 PM, Martijn Dashorst <
martijn.dasho...@gmail.com> wrote:
> On Fri, Jun 13, 2014 at 9:39 AM, Martin Grigorov
> wrote:
> > [X] Yes, release Apache Wicket 7.0.0-M2
> >
> > tested with wicket-examples, not very big application of mine, build
> >
> > Problems:
> >
> > 1)
On Fri, Jun 13, 2014 at 9:39 AM, Martin Grigorov wrote:
> [X] Yes, release Apache Wicket 7.0.0-M2
>
> tested with wicket-examples, not very big application of mine, build
>
> Problems:
>
> 1) There are two CHANGELOG files in the dist. The one for 6.x may be
> removed/not deployed.
Will remove.
>
The vote passes, I'll upload to mirrors.
Martijn
On Sat, Jun 14, 2014 at 2:53 PM, Andrea Del Bene wrote:
> +1. Tested with my main app.
>
>> This is a vote to release Apache Wicket 6.16.0
>>
>> Please download the source distributions found in our staging area
>> linked below.
>>
>> I have inclu
Once again - please users@ mailing list for this kind of questions!
When page B is loaded Wicket stores it in the disk - the key is
sessionId+pageId.
When you do Ajax calls to page B the sessionId and the pageId do not change
and Wicket overrides the old entry in the disk with the new one, i.e. th
in addition to what i have described
I have Page A which redirect using the next link :
Link link = new Link(propertyName) {
private static final long serialVersionUID = 1L;
@Override
public void onClick() {
getRequestCycle().setResponsePage(HomePage.class, params);
};
};
after this link get
Hi,
I don't like the number of constructors we have in the different impls of
CssHeaderItem and JavaScriptHeaderItem.
Recently I needed to set markup id to a CssHeaderItem to be able to replace
it with Ajax so I've added a new method [1] to CssHeaderItem: setId(String)
[2] that uses Fluent API pat
http://markmail.org/message/bk5zwpx5w7xdlkoa
please write to users@ for this kind of questions
Martin Grigorov
Wicket Training and Consulting
On Mon, Jun 16, 2014 at 10:51 AM, Yoav Stern wrote:
> I am using wicket in my web application. Assuming I have pages a b c where
> I move from A to B u
I am using wicket in my web application. Assuming I have pages a b c where
I move from A to B using page parameters change something in page B model
using ajax and B to C (without using page params).
problem : The scenario is moving A->B->C while changing page b model and
pressing the back button