Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-15 Thread Martin Grigorov
what do you think about JOOQ ? http://www.petrikainulainen.net/programming/jooq/using-jooq-with-spring-crud/ Martin Grigorov Wicket Training and Consulting On Tue, Apr 15, 2014 at 6:00 AM, William Speirs wrote: > Off-topic a bit... on the JPA front, I'm still relatively new and finding > it n

Re: TinyMCE InPlaceEditComponent on Wicket 6

2014-04-15 Thread Dirk Germonpré
Hello, Switching back to version 6.9.0 doesn't make a change. If I click the cancel button in the editor, it closes, but when I reopen it again, nothing works anymore. In what version should it be fixed? Is there a new JIRA issue? Kind regards, Dirk.

Re: TinyMCE InPlaceEditComponent on Wicket 6

2014-04-15 Thread Martin Grigorov
https://github.com/wicketstuff/core/commit/9fa1c25c113800ef9c55cdc4afbaacc3d6e3256a this is the fix Martin Grigorov Wicket Training and Consulting On Tue, Apr 15, 2014 at 11:00 AM, Dirk Germonpré wrote: > Hello, > > Switching back to version 6.9.0 doesn't make a change. If I click the > cancel

drop n drop

2014-04-15 Thread nazeem
Any suggestions for implementing drag and drop. Is there any thing in wicket 6. In our old project on wicket 1.4 we used wicket dnd (code.google.com/p/wicket-dnd/) to implement drag n drop. I dont see that active any more. So what is the best option ? I saw the wicket2-select project by igor usin

Re: drop n drop

2014-04-15 Thread Martin Grigorov
Hi, https://github.com/svenmeier/wicket-dnd http://search.maven.org/#artifactdetails%7Ccom.github.svenmeier.wicket-dnd%7Cwicket-dnd%7C0.6.0%7Cjar Martin Grigorov Wicket Training and Consulting On Tue, Apr 15, 2014 at 11:19 AM, nazeem wrote: > Any suggestions for implementing drag and drop. Is

Re: TinyMCE InPlaceEditComponent on Wicket 6

2014-04-15 Thread Dirk Germonpré
Great! It does the trick. Thanks a lot! Kind regards, Dirk. 2014-04-15 10:03 GMT+02:00 Martin Grigorov : > > https://github.com/wicketstuff/core/commit/9fa1c25c113800ef9c55cdc4afbaacc3d6e3256a > > this is the fix > > Martin Grigorov > Wicket Training and Consulting > > > On Tue, Apr 15, 2014 at

Re: Two Questions

2014-04-15 Thread Tobias Gierke
Hi, 1) I have a feedback panel and when i add messages under info(), they do not show up. When I add the message via error(), it shows as expected. Why might this be? Hm, IMHO both should work. Are you maybe using AJAX and not adding the FeedbackPanel to the AjaxRequestTarget when using info()

Re: Wicket CDI application junit test

2014-04-15 Thread Duke
Thanks Martin, I read WICKET-5264, but I don't understand... I havn't any injections in anonymous inner classes in my code. I try to inject EntityManager in public class LoginPage. If I remove any injections, fail remains. It disappers only if I remove { new CdiConfiguration().configure(this); } i

Re: drop n drop

2014-04-15 Thread Maxim Solodovnik
We are currently using DND with 6.14.0 Works as expected (with small display issues, which might be caused by massive ajax use) On Tue, Apr 15, 2014 at 3:23 PM, Martin Grigorov wrote: > Hi, > > https://github.com/svenmeier/wicket-dnd > > http://search.maven.org/#artifactdetails%7Ccom.github.sven

Re: Wicket CDI application junit test

2014-04-15 Thread Martin Grigorov
Hi, The ticket and its related ticket ( https://issues.apache.org/jira/browse/WICKET-5226) explain that using CDI 1.0 in container that supports CDI 1.1 leads to these errors. wicket-cdi integration tries to process all components (even Wicket's own ones) for CDI annotations. If you use a contain

Re: Wicket CDI application junit test

2014-04-15 Thread Duke
I'm sorry, I did not immediately explained. At first I tried to create tests for an existing application that uses wicket-cdi 1.0 and Glassfish 3.1.2. I did not succeed because of 'javax.naming.NamingException: Lookup failed for 'java:comp/BeanManager''. Then I think that with wicket-cdi1.1 it wi

Re: Wicket CDI application junit test

2014-04-15 Thread Duke
Found some info in mail archives. I will try to upgrade gf4 with weld 2.1.x as I read. Thanks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-CDI-application-junit-test-tp4665366p4665416.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: TinyMCE InPlaceEditComponent on Wicket 6

2014-04-15 Thread Dirk Germonpré
Hello, The editor is now working fine in a normal page. But I also need the editor to work inside a modal window. In that case, the editor opens and seems to work fine, until I hit the save button. The save button does nothing, the editor stays open. Is this a known issue? I'm currently working wi

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-15 Thread William Speirs
I hadn't heard of it. There are a few ORMs out there. I've looked at this library as well: http://jdbi.org/ However, that's a bit too much SQL writing for just the basic objects for me. Though it is a GREAT setup to make unit testing REALLY easy. I just find the JPA API so clumsy, especially when

Re: Introducing Croquet: Combining Wicket, Jetty, Hibernate, and Guice

2014-04-15 Thread Chris Snyder
I agree that JPA can be clunky. I have found the CriteriaBuilder way of building queries to be manageable (if a bit verbose). So far, I’ve used JQL queries (defined in @NamedQuery annotations) for the queries that have a well-defined structure, and CriteriaBuilder for the more complex cases (such a

Re: TinyMCE InPlaceEditComponent on Wicket 6

2014-04-15 Thread Andrea Del Bene
No, it's not a known issue. I will try to investigate it in during the very next days. Hello, The editor is now working fine in a normal page. But I also need the editor to work inside a modal window. In that case, the editor opens and seems to work fine, until I hit the save button. The save bu

wait indicator not showing with veil for AjaxButton

2014-04-15 Thread msalman
Hi, I am trying to show an wait indicator and a veil when an ajax button is showed. The veil works fine but despite all my effort the indicator is not working. Attached is a quick start of the project. My code is based on the code at this page: http://javathoughts.capesugarbird.com/2008/03/aj

Re: drop n drop

2014-04-15 Thread nazeem
Thank you for the detail. Will use dnd pointed in the post. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/drop-n-drop-tp4665408p4665424.html Sent from the Users forum mailing list archive at Nabble.com. ---