Re: custom (non wicket) modal dialog. Problem with urls.

2011-08-09 Thread brazz
Hi, thank you very much for your answer. It's correct till number 3. The link in the modal dialog has to be a resourcelink, which loads a pdf document from the server. I cannot use an external link because there is a firewall between user and document server (therefore i have to open an

Re: wicket, hibernate, spring setup

2011-08-09 Thread msj121
jWeekend no longer seems to have a wicket/hibernate/spring archetype. SOLVED: I had a lot of trouble using eclipse, but simply I did the following from the command line: mvn archertype:generate and then went through the steps of choosing groupid etc after all my attempts the archetype was

RE: Username gets cached

2011-08-09 Thread Hielke Hoeve
This is probably a browser 'feature' where certain form field get cached client-side. Very annoying especially since they can show unexpected behavior... autocomplete=off is optional so not all browsers use it. Hielke -Original Message- From: Anna Simbirtsev

Wicket examples in new version

2011-08-09 Thread marcelp
Hello, I ran the wicket examples in my Eclipse without any problems (after importing as Maven project from the src/wicket-examples). The wicket version here is appearantly 1.4.17. In my project at work we have the latest wicket version wicket.version1.5-RC5.1/wicket.version Now, here do some of

Re: Wicket examples in new version

2011-08-09 Thread Sven Meier
Seems you're mixing 1.4.x examples with 1.5 core, you should check your classpath. Hope this helps Sven On 08/09/2011 09:29 AM, marcelp wrote: Hello, I ran the wicket examples in my Eclipse without any problems (after importing as Maven project from the src/wicket-examples). The wicket

Re: Wicket examples in new version

2011-08-09 Thread marcelp
Hi Sven, You are right. I did mix them up. I got it compiling now but I get runtime exceptions. I might come back ;-0 Thanks for the hint. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-examples-in-new-version-tp3729204p3729516.html Sent from the Users forum

Re: Wicket examples in new version

2011-08-09 Thread marcelp
Hmm, I can't seem to get to the problem myself. Last cause: Failed to find markup file associated. ActionPanel: [ActionPanel [Component id = actions]] Root cause:org.apache.wicket.markup.MarkupNotFoundException: Failed to find markup file associated. ActionPanel: [ActionPanel [Component id =

Re: Wicket examples in new version

2011-08-09 Thread marcelp
THe HTML code got deleted in previous message. Should read:span wicket:id=actions [actions] with brackets -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-examples-in-new-version-tp3729204p3729633.html Sent from the Users forum mailing list archive at

Re: Wicket examples in new version

2011-08-09 Thread Martin Grigorov
How exactly do you start the examples ? I run org.apache.wicket.examples.StartExamples as Java Application and all repeaters work fine in current trunk. On Tue, Aug 9, 2011 at 2:11 PM, marcelp marcel_po...@deltalloyd.nl wrote: THe HTML code got deleted in previous message. Should read:    span

Re: Wicket examples in new version

2011-08-09 Thread marcelp
Hi martin, Like i said in my first post, when I import as Mavenproject then it works fine. When I copy and paste some of the files from the examples to my true project (like what i am doing with the simplepage because I need this exactly) it doesn't work completely. What I first noticed is that

Wicket job, Helsinki, Finland

2011-08-09 Thread Martin Makundi
Hi! We have a job-opening for a wicket developer. The job requires on-site presence (Helsinki, Finland) and finnish language skills (minimum fluent in reading). Project starts in august and duration is 3-6 months. Apply at: http://www.youritprofile.com/job_ad/id/2813 ** Martin

Radio with compoundPropertyModel

2011-08-09 Thread Marco Aurélio Silva
Hi All I'm having problems to make a radio component work the way I need. I have a list of PhoneNumber objects: class PhoneNumber { String number; boolean default; } The list can have only one entry set as default value. I'm trying to make the radio button set the value of default in each

Re: Radio with compoundPropertyModel

2011-08-09 Thread Rodrigo Heffner
Hi Marco, I haven't tested this, but I believe this should do the trick: class PhoneNumber { String number; boolean default; /* Add getters and setters for both */ } public void EditPhonePanel(String id, PhoneNumber phoneNumber) { CompoundPropertyModel model = new

Re: Radio with compoundPropertyModel

2011-08-09 Thread Rodrigo Heffner
Please change my TextField line for add(TextField(number, model.bind(number))); Please check parenthesis as well :) I'm not working now and my IDE is not open Sorry! On Tue, Aug 9, 2011 at 7:12 PM, Rodrigo Heffner rodrigo.heff...@gmail.com wrote: Hi Marco, I haven't tested this, but I

Re: Radio with compoundPropertyModel

2011-08-09 Thread Marco Aurélio Silva
Hi Rodrigo, Thanks for the fast response, but that approach didn't solve the problem. Actually, the problem is not the CompoundPropertyModel, if I use a PropertyModel instead it wouldn't work as well... in both cases only the textField is updating my model, the radio does not. Thanks Marco On

Re: Radio with compoundPropertyModel

2011-08-09 Thread Rodrigo Heffner
Hi Marco, I'm not sure why this is happening. I would probably add an AjaxFormComponentUpdatingBehavior to your radio (here is an example http://wicketstuff.org/wicket13/ajax/choice) and use some debug lines to check values. Note that your components must be inside a form (which I believe yours

Modal window issue

2011-08-09 Thread Archana
Hi All, In my current application there is a need to open a Modal window with in a Modal window and close the parent Modal window, once the child Modal window opens. Currently from one page on click of a icon the Modal window 1 is opening. Modal window 1 has few other components along with few

Re: Modal window issue

2011-08-09 Thread Martin Makundi
You can do it with javascript. Make a trigger that closes the modalwindow and then opens a new one by firing a new javascript call. Here is an example: final FriendlyAjaxEventBehavior ajaxEventBehavior; add(ajaxEventBehavior = new

Re: Radio with compoundPropertyModel

2011-08-09 Thread Marco Aurélio Silva
Hi Rodrigo Thanks for your help, but that's not the point. The point is, I need a way to make the radio work the same way textField works, for example. I have a dynamic list of phones and I want the auto bind of propertyModel automatically set the boolean property of my object to true or false

[Ann] New Wicket stuff library for simplified ModalWindows: ModalX (1.4.x + 1.5.x)

2011-08-09 Thread Chris Colman
The open source ModalX modal window extensions framework from Visual Classworks has just been added to wicket-stuff. ModalX now comes in a version for Wicket 1.4.x and for 1.5.x. Try the live demo here: http://demo.visualclassworks.com/modalx/ Read more here:

SAML and Wicket

2011-08-09 Thread Chris Colman
Has anyone had any experience integrating SAML with Wicket? Is it doable? Easy etc., Can it reuse wicket's inbuilt authentication/redirection mechanism? Yours sincerely, Chris Colman Pagebloom Team Leader, Step Ahead Software pagebloom - your business your website growing together

CheckGroup Model

2011-08-09 Thread delta
Hello ppl, I have a VO named *Campo* with some attr's. And my CheckGroup inside of a ListView: CheckGroupCampo checkGroupCampo = new CheckGroupCampo(checkGroupCampo, dadosCarta.getListaCampos()); checkGroupCampo.add(new CheckGroupSelector(groupSelectorCampos));

Re: SAML and Wicket

2011-08-09 Thread Russell Pitre
How about wicket-auth-roles + spring security + spring security SAML extension. The documentation looks sparse on the spring security SAML extension, but I bet you could figure it out. Perhaps there is some sample code in the project source that you could take a look at. Not exactly the response

RE: SAML and Wicket

2011-08-09 Thread Chris Colman
No problem. We don't use Spring but you're right, we might be able to pick up some pointers from the code. Thanks, Chris -Original Message- From: Russell Pitre [mailto:rpi...@gmail.com] Sent: Wednesday, 10 August 2011 9:44 AM To: users@wicket.apache.org Subject: Re: SAML and Wicket How

Re: [Ann] New Wicket stuff library for simplified ModalWindows: ModalX (1.4.x + 1.5.x)

2011-08-09 Thread Martin Makundi
Hi! Is this true: Source Code core-1.4.x Branch Path is: /jdk-1.5-parent/modalx-parenthttps://github.com/wicketstuff/core/tree/core-1.4.x/jdk-1.5-parent/modalx-parent 2011/8/10 Chris Colman chr...@stepaheadsoftware.com ** ** The open source ModalX modal window extensions framework from

Re: [Ann] New Wicket stuff library for simplified ModalWindows: ModalX (1.4.x + 1.5.x)

2011-08-09 Thread Martin Makundi
Ah, sorry, confused jdk-1.5 with W1.5 2011/8/10 Martin Makundi martin.maku...@koodaripalvelut.com Hi! Is this true: Source Code core-1.4.x Branch Path is: /jdk-1.5-parent/modalx-parenthttps://github.com/wicketstuff/core/tree/core-1.4.x/jdk-1.5-parent/modalx-parent 2011/8/10 Chris

how to implement a Form with Ajax Paginated List of Checkboxes?

2011-08-09 Thread bad boy
On my Wicket page, I have a form with a couple of TextFields and a paginated List of Checkboxes implemented with Dataview and and a sortable data provider.   The ajax pagination of the dataview works fine. The problem is that when I select a few items on Page 1 and then go to Page 2 and then