Re: Problems with ModalWindows during upgrade from 1.4 to 1.5

2012-09-05 Thread Greg Wogan-Browne
Thanks Gabriel, it does seem like the same issue. I will investigate whether changing the modal window contents into panels is feasible for my application. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Problems-with-ModalWindows-during-upgrade-from-1-4-to-1-5-t

Re: Problems with ModalWindows during upgrade from 1.4 to 1.5

2012-09-05 Thread Gabriel Landon
Hi Greg, I think this is related to the problem I had last year : http://apache-wicket.1842946.n4.nabble.com/Page-serialization-problem-with-wicket-1-5-td4097909.html See https://issues.apache.org/jira/browse/WICKET-3751 https://issues.apache.org/jira/browse/WICKET-3809 Regards, Gabriel.

Problems with ModalWindows during upgrade from 1.4 to 1.5

2012-09-05 Thread Greg Wogan-Browne
Hello, I am new to Wicket and have recently inherited a moderately large Wicket application. I have been asked to upgrade the application from version 1.4 to 1.5, and have run into a problem with the way this application handles ModalWindows, and the receiving of values therefrom. I have attached

AjaxFallbackLabel Component

2012-09-05 Thread Abid K
I've created a simple component called 'AjaxFallbackLabel', which might be useful to have as part of the Ajax components. I particularly found it useful when explaining to the user that Ajaxified components would automatically refresh, otherwise when JavaScript is disabled it would revert to the d

Re: Debug messages

2012-09-05 Thread vineet semwal
looks ok to me .. On Thu, Sep 6, 2012 at 1:59 AM, Anna Simbirtsev wrote: > This log setting? I tried changing log4j.rootLogger=INFO,Stdout, it still > prints. > > Thank you for you answer. > > log4j.rootLogger=DEBUG,Stdout > > log4j.appender.Stdout=org.apache.log4j.ConsoleAppender > log4j.appende

Re: inmethod grid 6.0-SNAPSHOT doesn't work in IE8

2012-09-05 Thread Dan Simko
sorry, attachment is here http://wickeria.com/screenshot.png On Wed, Sep 5, 2012 at 10:27 PM, Dan Simko wrote: > Hi, > > online example (http://www.wicket-library.com/inmethod-grid) is working > great in my IE8, but when I run latest version from > https://github.com/wicketstuff/core/tree/master

Re: Debug messages

2012-09-05 Thread Anna Simbirtsev
This log setting? I tried changing log4j.rootLogger=INFO,Stdout, it still prints. Thank you for you answer. log4j.rootLogger=DEBUG,Stdout log4j.appender.Stdout=org.apache.log4j.ConsoleAppender log4j.appender.Stdout.layout=org.apache.log4j.TTCCLayout log4j.appender.Stdout.layout.ThreadPrinting=tr

inmethod grid 6.0-SNAPSHOT doesn't work in IE8

2012-09-05 Thread Dan Simko
Hi, online example (http://www.wicket-library.com/inmethod-grid) is working great in my IE8, but when I run latest version from https://github.com/wicketstuff/core/tree/master/jdk-1.6-parent/inmethod-grid-parentgrid is not initialized correctly in IE8 (see attachment). The problem is probably in s

Re: Debug messages

2012-09-05 Thread vineet semwal
change the log setting to INFO from DEBUG On Thu, Sep 6, 2012 at 1:24 AM, Anna Simbirtsev wrote: > Hi > > I am seeing the following debug messages, how do I turn them off? > > 15:51:07.816 [1945207123@qtp-636450175-3] DEBUG > org.apache.wicket.MarkupContainer - Rendering raw markup > 15:51:07.816

Debug messages

2012-09-05 Thread Anna Simbirtsev
Hi I am seeing the following debug messages, how do I turn them off? 15:51:07.816 [1945207123@qtp-636450175-3] DEBUG org.apache.wicket.MarkupContainer - Rendering raw markup 15:51:07.816 [1945207123@qtp-636450175-3] DEBUG org.apache.wicket.Page - Rendered [MarkupContainer [Component id = 7]] 15:5

Re: The Apache Software Foundation Announces Apache Wicketâ„¢ 6.0.0

2012-09-05 Thread Michael M
Congratulations, and thank you! 2012/9/5 Martijn Dashorst > "With great pleasure we announce the availability of Apache Wicket 6.0.0" > -- Martijn Dashorst, Vice President, Apache Wicket > > Apache Wicket v6.0.0 is the 6th major release of the popular open > source Java web framework. Numerous e

The Apache Software Foundation Announces Apache Wicketâ„¢ 6.0.0

2012-09-05 Thread Martijn Dashorst
"With great pleasure we announce the availability of Apache Wicket 6.0.0" -- Martijn Dashorst, Vice President, Apache Wicket Apache Wicket v6.0.0 is the 6th major release of the popular open source Java web framework. Numerous enhancements make Apache Wicket v6.0.0 a solid choice for web developme

Re: Error ESC key press event

2012-09-05 Thread Martin Grigorov
Try with bigger scope: window.Flag On Wed, Sep 5, 2012 at 5:25 PM, Marco Di Sabatino Di Diodoro wrote: > > On Sep 5, 2012, at 3:49 PM, Martin Grigorov wrote: > >> Hi, >> >> You already wrap the call to wicketAjaxXXX() method in if statement. >> Just raise a flag that you entered in this code and

Re: Error ESC key press event

2012-09-05 Thread Marco Di Sabatino Di Diodoro
On Sep 5, 2012, at 3:49 PM, Martin Grigorov wrote: > Hi, > > You already wrap the call to wicketAjaxXXX() method in if statement. > Just raise a flag that you entered in this code and set it back to > false in the success/failure handler. Do you mean this? private static final String PRE_J

Apache Wicket 1.4.21 is released

2012-09-05 Thread Carl-Eric Menzel
This is 21st release of the Wicket 1.4.x series. This is also the last release of the 1.4.x series, rounding up the remaining bugfixes. No further releases will happen in this branch. Git tag: release/wicket-1.4.21 Changelog: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=123105

Re: Error ESC key press event

2012-09-05 Thread Martin Grigorov
Hi, You already wrap the call to wicketAjaxXXX() method in if statement. Just raise a flag that you entered in this code and set it back to false in the success/failure handler. On Wed, Sep 5, 2012 at 3:40 PM, Marco Di Sabatino Di Diodoro wrote: > Hi Martin, > > On Sep 5, 2012, at 12:20 PM, Mart

Re: Error ESC key press event

2012-09-05 Thread Marco Di Sabatino Di Diodoro
Hi Martin, On Sep 5, 2012, at 12:20 PM, Martin Grigorov wrote: > Hi Marco, > > I see a quite simple solution with Wicket 6 for this. I think you just > start with your project (or even this is just a prototype?) so you > better use "the latest and greatest" :-) We can not upgrade to Wicket 6 in

Re: Jqwicket

2012-09-05 Thread Pierre Goupil
Excellent! Thank you, everybody! On Tue, Sep 4, 2012 at 11:17 PM, mk wrote: > I've started Wicket 6 migration, check the SCM. Plan to release next > JQWicket > version after Wicket 6 final is available. > > > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Jqw

Re: Error ESC key press event

2012-09-05 Thread Martin Grigorov
Hi Marco, I see a quite simple solution with Wicket 6 for this. I think you just start with your project (or even this is just a prototype?) so you better use "the latest and greatest" :-) What I mean is to use the new AjaxChannel.Type.Active. The active type prevents a second Ajax call in the sa

Error ESC key press event

2012-09-05 Thread Marco Di Sabatino Di Diodoro
Hi all, I configure into Apache Syncope the possibility to close ModalWindow with ESC key press event. public class CloseOnESCBehavior extends AbstractDefaultAjaxBehavior { private static final long serialVersionUID = 5826308247642534260L; private ModalWindow modalWindow; public Cl

Re: Question about unit testing

2012-09-05 Thread Martin Makundi
This is what you need, works for any component: /** * @param * @param formComponent * @return T */ @SuppressWarnings("unchecked") public static T getConvertedValue(FormComponent formComponent) { try { if (formComponent instanceof AbstractSingleSelectChoice) { re

Re: Question about unit testing

2012-09-05 Thread Markward Schubert
Thanks for the link! This is really interesting and I think I will adapt this. Unfortunately I am not sure if this addresses my original Problem. What I need is a kind of code, like this: // start page... tester.startComponentInPage(MyFormPanel.) // verify that after initial page rendering,

Re: Question about unit testing

2012-09-05 Thread Martin Makundi
https://cwiki.apache.org/WICKET/type-safe-testing-in-wicket.html =) 2012/9/5 Markward Schubert : > Hi folks! > > I am sure this is a trivial question, but i am simply too dumb to figure > this out. > We have a DopDownChoice, which is prefilled by some modelvalue, given to > the page. > Until now

Re: select2 localization questions

2012-09-05 Thread Sandor Feher
Hi, Igor Vaynberg-2 wrote > > you should declare your Select2Choice as Select2Choice since > that is its model type. once you do this the compiler will tell you > that your TextChoiceProvider should be TextChoiceProvider > instead of > > -igor > In this case I can't search for description he

Re: Migration to 1.5: 'X' is not a valid Serializable

2012-09-05 Thread dpmihai
see this: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-ListMultipleChoice-add-Serializable-values-td4585991.html#a4586026 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Migration-to-1-5-X-is-not-a-valid-Serializable-tp4651757p4651764.html Sent from the User

Re: Apache Wicket 1.5.8 is released

2012-09-05 Thread Martin Grigorov
Thanks! I've missed a step in our post-release process. Fixed. On Wed, Sep 5, 2012 at 8:56 AM, Maarten Bosteels wrote: > Congratulations with the new release. > > I guess it would be best if 1.5.8 was added to the dropdown box (and become > the default option) on http://wicket.apache.org/start/q