Re: Dynamic QR image

2014-02-12 Thread deliadavis...@hotmail.com
Apply an image barcode creating tool to create 2d qr code as well as generate pdf 417 on image or document page. The supportable image file

Re: Wicket's @SpringBean and the "autowire-candidate" annotation

2014-02-12 Thread deliadavis...@hotmail.com
Using annotaiton to note, highlight or underline content on image or document, including PDF is a common solution for document file markup creation. Tag: image annotation -- View this message in context: http://apache-wicket

Re: Feedback Messages prevent DropDownChoice updating Textfields

2014-02-12 Thread Daniela L
Hi, sometimes one doesn't see the obvious things, I simply had to add a lastName.clearInput(); in the onUpdate method and everything works as expected. I hope that helps anybody having the same problem :-) Best Regards Daniela Hi, I am trying to implement a Feedback for every Form Component and a

Re: How to make a Wiket DropDownChoice with complex a model return a simple String

2014-02-12 Thread Andrea Del Bene
Here is some code of a possible solution: public class DropDownChoiceForString extends DropDownChoice { private IModel targetModel; public DropDownChoiceForString(String id, IModel model, IModel targetModel, List choices, IChoiceRenderer renderer) { super(id, model,

Re: Modular Wicket Application

2014-02-12 Thread Martin Grigorov
Hi, You have to use Wicket libraries with the same major version. wicket is 7.0.0-SNAPSHOT but wicketstuff-annotation is 1.4 I'd recommend you to use 6.13 for both Martin Grigorov Wicket Training and Consulting On Sat, Feb 8, 2014 at 10:12 AM, IowA wrote: > Hello all, I am new to Wicket. Whe

Re: How get wiki Framework Documentation for offline reading

2014-02-12 Thread Duke
Hi, Martin. Hi everyone! What about a offline wicket api documentation ? Sometime it's usefull to get it without any internet connection. Can we download it anyware? Best regards, Andrey -- View this message in context: http://apache-wicket.1

Re: How get wiki Framework Documentation for offline reading

2014-02-12 Thread Martin Grigorov
http://central.maven.org/maven2/org/apache/wicket/wicket-core/6.13.0/wicket-core-6.13.0-javadoc.jar Martin Grigorov Wicket Training and Consulting On Wed, Feb 12, 2014 at 4:57 PM, Duke wrote: > Hi, Martin. Hi everyone! > What about a offline wicket api documentation >

Re: Modular Wicket Application

2014-02-12 Thread IowA
Hello, I was not using annotations, so after removing it from pom.xml I am still getting same error Martin Grigorov-4 wrote > Hi, > > You have to use Wicket libraries with the same major version. > wicket is 7.0.0-SNAPSHOT > but wicketstuff-annotation is 1.4 > > I'd recommend you to use 6.13 fo

Re: Modular Wicket Application

2014-02-12 Thread Martin Grigorov
https://github.com/ReginaldasR/wicket-modular/pull/1 Martin Grigorov Wicket Training and Consulting On Wed, Feb 12, 2014 at 5:51 PM, IowA wrote: > Hello, I was not using annotations, so after removing it from pom.xml I am > still getting same error > > > Martin Grigorov-4 wrote > > Hi, > > > >

RE: How to make a Wiket DropDownChoice with complex a model return a simple String

2014-02-12 Thread Bruce Lombardi
Thanks Andrea, I was trying what you sent in your previous message and I was having trouble figuring out how to get the value set on the target property model. Your code here, especially this line: targetModel.setObject(getChoiceRenderer().getIdValue(newSelection, choiceIndex)); was re

Error in Modal opening two diffrent instances of Wicket applicaiton.

2014-02-12 Thread eaglei22
Hello, I am having an issue when I have my application opened in two separate tabs in IE or FireFox. Here is the problem: I have a page called User, and in this page you can open a Modal window to search for a user. Once a user is found, you select it, and the Modal window closes, and that User

Re: Error in Modal opening two diffrent instances of Wicket applicaiton.

2014-02-12 Thread eaglei22
I have made a few changes to my original explanation: Here is the edited version: The problem is if I have tab open on the User page and run a search in the Modal window for another user, and while this is taking place, I open another tab and goto another instance of the application and to the use

Re: Error in Modal opening two diffrent instances of Wicket applicaiton.

2014-02-12 Thread eaglei22
Here is some more information on my initializating of the modal window: add(userPageFindUserModal = new ModalWindow("findUserModalWindow")); userPageFindUserModal.setResizable(false); userPageFindUserModal.setInitialHeight(23); use