Re: p tags!

2013-09-09 Thread Martin Grigorov
Hi, If you are able to create an application that demonstrates the issue I'll be happy to debug it. There is nothing special in Wicket code about p tag. On Mon, Sep 9, 2013 at 5:28 AM, Colin Rogers colin.rog...@objectconsulting.com.au wrote: Wicketeers! I have an odd bug, that has been

Re: Securing Wicket 6.x Applications with Java EE, Spring Jetty

2013-09-09 Thread Martin Grigorov
Thank you very much for sharing your knowledge with us, Shawn! Please let us know when you publish the second document. On Mon, Sep 9, 2013 at 5:58 AM, Shawn McKinney mckinney-sh...@att.netwrote: Hello, I am a new subscriber to the Wicket users list but have been using the Wicket framework

Re: Test based on AbstractWicketTest fails with No RequestCycle is currently set

2013-09-09 Thread Martin Dietze
On Sat, September 07, 2013, Martin Grigorov wrote: com.mycompany.request.WicketContainerChecker.onInstantiation(WicketContainerChecker.java:48) What is this doing ? Does it start a new thread by chance ? Or doing something like: ThreadContext.detach() /

Re: Tests based on WicketTester: NPE in ConcatBundleResource.readAllResources

2013-09-09 Thread Martin Dietze
On Sat, September 07, 2013, Martin Grigorov wrote: Is there a chance that you create a bundle without any resource(reference) ? Not quite sure I understand this correctly, In YourApplication#init() you something like: getResourceBundles().addXyzBundle(Class, String,

Re: Test based on AbstractWicketTest fails with No RequestCycle is currently set

2013-09-09 Thread Martin Dietze
On Mon, September 09, 2013, Martin Dietze wrote: No, nothing of that kind. It's just a helper to make sure noone uses Ajax on components which are added to the markup as wicket:container wicket:id=../wicket:container OK, that one is solved, too. After replacing the Application used in

Re: Securing Wicket 6.x Applications with Java EE, Spring Jetty

2013-09-09 Thread Shawn McKinney
On 09/09/2013 01:21 AM, Martin Grigorov wrote: Thank you very much for sharing your knowledge with us, Shawn! Please let us know when you publish the second document. My pleasure Martin. I've been using this forum and it's time for me to contribute something. Hope it helps. Shawn

Re: AutoCompleteTextField suggestions popup position issue when container has scrollbar

2013-09-09 Thread Rakesh A
Hi, Can you please provide me the call [new call] details, when you create one. Thanks, Rakesh.A -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AutoCompleteTextField-suggestions-popup-position-issue-when-container-has-scrollbar-tp4661242p4661267.html Sent from

How to clear autoComplete textfield in Wicket after submit?

2013-09-09 Thread eaglei22
I'm having issues clearing the input of a autoComplete Textfield.. For some reason whenever I call target.add(reference to AutoCompleteTextField); my input values are null... So basically, I can clear the referenced string the input is stored in, but everytime I call an ajaxupdate it nulls. I

Re: How to clear autoComplete textfield in Wicket after submit?

2013-09-09 Thread eaglei22
To add: The autoCompleteTextField input field clears the first time, but when I try it again. The string: autoString will be null. So if you choose your selection on first attempt (from the search list provided), hit select button, it gives you the correct string and clears. But when you do it for

Re: p tags!

2013-09-09 Thread Bas Gooren
Could it be related to http://stackoverflow.com/questions/10763780/putting-div-inside-p-is-adding-an-extra-p ? I've seen odd behavior before when using block-level elements inside p-tags. However, from your e-mail it's not entirely clear what your html looks like. Subcomponents of mainpanel

Re: AutoCompleteTextField suggestions popup position issue when container has scrollbar

2013-09-09 Thread Andrea Del Bene
Hi, the issue was tracked here https://issues.apache.org/jira/browse/WICKET-5343. You can see the fix in the following commit: https://git-wip-us.apache.org/repos/asf?p=wicket.git;a=commitdiff;h=072dd52e Hi, Can you please provide me the call [new call] details, when you create one.

RE: p tags!

2013-09-09 Thread Colin Rogers
Bas, Awesome - thanks for find that! I does explain a few things... My code was something like; wicket:panel pdiv wicket:id=subComponent1/div/p div wicket:id=subComponent2/div /wicket:panel Which - from your link - would suggest this is a really bad idea... I'm pretty sure in certain