Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2014-08-20 Thread Dirk Forchel
Hi Ernesto, after a couple of weeks (months) I still haven't found a solution. Any idea? Thanks for your helping hand. -- View this message in context:

RenderStrategy REDIRECT_TO_RENDER lets fail Test with startComponentInPage

2014-08-20 Thread Dirk Forchel
Hi, after I have changed the RenderStrategy from REDIRECT_TO_BUFFER to REDIRECT_TO_RENDER one of our tests fails. Actually I could not figure out why the markup is not found although it is created, but the test fails with a MarkupNotFoundException. I'm wondering why? Here is the stacktrace:

Re: RenderStrategy REDIRECT_TO_RENDER lets fail Test with startComponentInPage

2014-08-20 Thread Martin Grigorov
Hi, Can you reproduce this in a quickstart ? If YES then please attach it to a ticket in JIRA and I'll take a look. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Aug 20, 2014 at 11:06 AM, Dirk Forchel dirk.forc...@exedio.com wrote: Hi, after I have

Re: RenderStrategy REDIRECT_TO_RENDER lets fail Test with startComponentInPage

2014-08-20 Thread Dirk Forchel
Yes I can, the quickstart is already attached (see above). -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/RenderStrategy-REDIRECT-TO-RENDER-lets-fail-Test-with-startComponentInPage-tp4667101p4667103.html Sent from the Users forum mailing list archive at Nabble.com.

Re: WiQuery: positioning a dialog when reusing it

2014-08-20 Thread Martin Dietze
I have looked into that issue a bit further. On 17 August 2014 17:23, Mihir Chhaya mihir.chh...@gmail.com wrote: I have used WQuery Dialog for Wicket 1.4 and could make it work in center using setMinimumHeight and setMinimumWidth methods when adding dialog. That's true, but this is part of the

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2014-08-20 Thread Martin Grigorov
Hi, With the following modifications it works: in HomePage.html: spanstatic resource from Web Container/span img class=icon src=images/dotclear.png /br spanContextRelativeResource with SharedResourceReference/span img class=icon wicket:id=dotclear1 /br

Re: Demonstrate End-to-End Security Enforcement using Open Source Software Wicket

2014-08-20 Thread Martin Grigorov
Hi, I am not able to find the tutorial ... :-/ At http://iamfortress.org/FortressDemo2 there is only a diagram. At the bottom there is a link to the Javadocs of the application. But I cannot find the tutorial. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On

Compound Property Model to a form is not getting updated

2014-08-20 Thread suvojit168
I am facing a strange behavior in wicket compound property model. I have a model object which I set to a form as its default model. This form is a search form. The model is supplied to the form's constuctor from outside. Problem: When I enter value in the form for the first time, the model

Re: Struggling with ContextRelativeResource, RenderedDynamicImageResource and SharedResources

2014-08-20 Thread Dirk Forchel
Thank you Martin. Lovely. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Struggling-with-ContextRelativeResource-RenderedDynamicImageResource-and-SharedResources-tp4662190p4667115.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Compound Property Model to a form is not getting updated

2014-08-20 Thread Sven Meier
Hi, why are you using a CompoundPropertyModel and PropertyModel? With the former there's no need for the latter. Nevertheless I don't see a problem with your code. Instead of double posting to stackoverflow and wicket-user, next time please create a quickstart instead :P. Sven On

Re: WiQuery: positioning a dialog when reusing it

2014-08-20 Thread Mihir Chhaya
In fact I have found WiQuery dialog more helpful. I am sharing my code with you; just to show my version of using the dialog. Not necessarily the best way, but is working for me and very helpful. (I HAVE DEVELOPED MY VERSION USING ERNESTO REINALDO'S ORIGINAL SUGGESTION FOR DIALOG BOX CREATION,

Pass Variable from Wicket Page to .jsp

2014-08-20 Thread jcombs346
New to Wicket. I'm working on changing web application pages from .jsp to Wicket. With a button onSubmit() I need to pass a string value to a jsp. Currently with .jsp this is the function that is called when the change button is pressed: function changeRecord() { var

Re: Demonstrate End-to-End Security Enforcement using Open Source Software Wicket

2014-08-20 Thread Shawn McKinney
On 08/20/2014 08:01 AM, Martin Grigorov wrote: I am not able to find the tutorial ... :-/ Athttp://iamfortress.org/FortressDemo2 there is only a diagram. At the bottom there is a link to the Javadocs of the application. But I cannot find the tutorial. The steps are contained within the

Re: Demonstrate End-to-End Security Enforcement using Open Source Software Wicket

2014-08-20 Thread Martin Grigorov
OK. Thanks! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Aug 20, 2014 at 5:39 PM, Shawn McKinney mckinney-sh...@att.net wrote: On 08/20/2014 08:01 AM, Martin Grigorov wrote: I am not able to find the tutorial ... :-/

Re: Compound Property Model to a form is not getting updated

2014-08-20 Thread suvojit168
Hi, Can you tell me if all seems good then why am I not getting updated values from UI. Under what possible circumstance will wicket fail to give latest input values? I am really clueless. Thanks -- View this message in context:

Re: Pass Variable from Wicket Page to .jsp

2014-08-20 Thread Martin Grigorov
Hi, The requirement is not very clear to me.. I guess you have a Wicket page with a Form and you want this form to submit to an old/JSP page, correct ? If this is correct then override Form's getActionUrl() to return the/path/to/jspPage (i.e. record/change) and the change button should do:

Re: Demonstrate End-to-End Security Enforcement using Open Source Software Wicket

2014-08-20 Thread Shawn McKinney
Notably missing from the material is theory or why these types of complex security mechanisms are necessary. I'm working on that now and will publish it back here when ready. On 08/20/2014 09:43 AM, Martin Grigorov wrote: OK. Thanks! Martin Grigorov Wicket Training and Consulting

Re: Compound Property Model to a form is not getting updated

2014-08-20 Thread Sven Meier
I am really clueless. Me too. A quickstart would reveal the cause of the problem. Regards Sven On 08/20/2014 04:41 PM, suvojit168 wrote: Hi, Can you tell me if all seems good then why am I not getting updated values from UI. Under what possible circumstance will wicket fail to give latest