JayWire DI with Wicket

2015-06-23 Thread Robert Bräutigam
Hi all, for those who might be interested in a explicit (non-reflection-based), no-magic, constructor parameter based DI framework for Wicket and Java 8: https://github.com/vanillasource/jaywire short wicket howto in wiki here:

Re: Is it possible to avoid serialization of page after ajax request?

2015-06-23 Thread Fridolin Jackstadt
Issue opened here: https://issues.apache.org/jira/browse/WICKET-5933 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Is-it-possible-to-avoid-serialization-of-page-after-ajax-request-tp4671295p4671331.html Sent from the Users forum mailing list archive at Nabble.com.

Wicket Bootstrap 0.10.2 is released

2015-06-23 Thread Martin Grigorov
Hi, Wicket Bootstrap 0.10.2 has been released and soon will be available at Maven Central. The major change is the upgrade of Wicket to 7.0.0-M6 and Bootstrap to 3.3.5. The Git short log is: Martin Tzvetanov Grigorov (24): [maven-release-plugin] prepare for next development iteration

Bootstrap Typeahead example?

2015-06-23 Thread Tom Götz
Hi, I’m currently trying to implement a Typeahead component using the wicket-bootstrap project (v 0.10.1, Wicket version 7.0.0-M5). Is there some example how the template mechanism can be used (de.agilecoders.wicket.extensions.markup.html.bootstrap.form.typeaheadV10.DataSet#Templates)? I found

Re: Panel visibility with AJAX problem

2015-06-23 Thread Martin Grigorov
Hi, Check for JavaScript errors. I guess that you use wicket:container for the signedInPanel and the JS code that has to hide it is not able to find it in the DOM. In production mode all wicket:xyz elements and attributes are stripped from the response. If this is the problem then just replace

Panel visibility with AJAX problem

2015-06-23 Thread terjeeit
Hi! I have a BasePage with a SignedInPanel and SignedOutPanel. Visibility is determined according to the apps internal login state AND async javascript call (external login service). This is done in onConfigure method in BasePage like this: @Override protected void onConfigure() {

semiserious: Android M logo

2015-06-23 Thread andrea del bene
Looks so familiar to me :-) https://www.google.it/webhp?hl=en#hl=enq=android+M+logo - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Is it possible to avoid serialization of page after ajax request?

2015-06-23 Thread Fridolin Jackstadt
the page is indeed not deserialized, but received from http session, but it looks like we cannot avoid the serialization. Our application doesn't touch the page, but the AbstractPageManager does: * IManageablePage page = getRequestAdapter().getPage(id); if (page != null) {

Re: [ANNOUNCE] Apache Wicket 6.20.0 adds InlineImage and CSRF prevention measure

2015-06-23 Thread Peter Henderson
On Wed, Jun 17, 2015 at 10:03 AM, Martijn Dashorst dasho...@apache.org wrote: The Apache Wicket PMC is proud to announce Apache Wicket 6.20.0! It looks like the main wicket.apache.org site needs an update to show that version 6.20.0 is out. Thanks for all the hard work guys Peter. --

[ANNOUNCE] Wicket 7.0.0-M6 released

2015-06-23 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 7.0.0-M6! This release marks another minor release of Wicket 7. We use semantic versioning for the development of Wicket, and as such no API breaks are present breaks are present in this release compared to 7.0.0. New and noteworthy

Re: Panel visibility with AJAX problem

2015-06-23 Thread terjeeit
Yes! That was it. New version deployed, everybody happy. Thank you very much, Sir. Sometimes Wicket can be so.. subtle. :) Kind regards Terje -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Panel-visibility-with-AJAX-problem-tp4671307p4671327.html Sent from the

Re: Is it possible to avoid serialization of page after ajax request?

2015-06-23 Thread Martin Grigorov
Please create a ticket and attach the quickstart there. Thanks! Martin Grigorov Freelancer. Available for hire! Wicket Training and Consulting https://twitter.com/mtgrigorov On Tue, Jun 23, 2015 at 1:31 PM, Fridolin Jackstadt frid...@gmail.com wrote: Here is a quickstart

Re: semiserious: Android M logo

2015-06-23 Thread Sven Meier
Hi Andrea, my thoughts exactly when I first saw it :) Sven On 23.06.2015 09:44, andrea del bene wrote: Looks so familiar to me :-) https://www.google.it/webhp?hl=en#hl=enq=android+M+logo - To unsubscribe, e-mail:

Re: Is it possible to avoid serialization of page after ajax request?

2015-06-23 Thread Fridolin Jackstadt
Here is a quickstart http://apache-wicket.1842946.n4.nabble.com/file/n4671326/wicket-touch.zip that demonstrates the performance impact. There is a ExperimentalPageManagerProvider configured in the WicketApplication that makes ajax polling requests about two times faster. Something similiar has