Re: Wicket 6 + EJB

2012-09-24 Thread Michael Zhavzharov
Thank you, Bruno! I will choose from this two frameworks. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-EJB-tp4652286p4652298.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: Wicket 6 + EJB

2012-09-24 Thread Michael Zhavzharov
Thank you, heapifyman! Your post solved my problem! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-6-EJB-tp4652286p4652297.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Wicket 6 + EJB

2012-09-24 Thread Bruno Borges
Prefer to use the wicket-cdi module. *Bruno Borges* (11) 99564-9058 *www.brunoborges.com* On Mon, Sep 24, 2012 at 1:33 PM, heapifyman wrote: > https://github.com/wicketstuff/core/wiki/Java-EE-Inject > allows injecting EJBs, etc. in wicket-6 applications. > > > > > 2012/9/24 Michael Zhavzharo

Re: Wicket 6 + EJB

2012-09-24 Thread heapifyman
https://github.com/wicketstuff/core/wiki/Java-EE-Inject allows injecting EJBs, etc. in wicket-6 applications. 2012/9/24 Michael Zhavzharov > Hello Everyone. > > I have a question about how to include EJB into my wicket web application. > When I was looking for solution for this problem in goo

Wicket 6 + EJB

2012-09-24 Thread Michael Zhavzharov
Hello Everyone. I have a question about how to include EJB into my wicket web application. When I was looking for solution for this problem in google, I have found two ways to solve it: 1) Extend my Application class from org.jboss.weld.wicket.WeldApplication and then simply add @Inject annotation

RE: Autocomplete Problem on Chrome

2012-09-24 Thread Paul Bors
Sounds like a JavaScript problem for which we would have to see the code in order to help you. Why don't you instead try using Select2 integrated in Wicket by Igor Vayngerg: https://github.com/ivaynberg Direct link to his Select2 project on Github: https://github.com/ivaynberg/select2 To see som

Autocomplete Problem on Chrome

2012-09-24 Thread cosmindumy
Hello, I have a problem at autocomplete on Chrome. We have a customized textfield that is autocomplteted with values from a list. Each time after user input text, a list of values appears, and after the user chose one, it can again type text and the behaviour repeats. It acts as a multiple select.

Re: Wicket Behavior triggered by Ajax

2012-09-24 Thread raphw
This does not seem to work, I tried the jQuery command though and with a simple Javascript statement, it seems to work as when I add by an attribute modifier: onclick="alert("test");" The content of my onchange event looks like this and cannot be triggered (the Ajax debug does not show any debug e

Re: Regarding "WARN - (WebPageRenderer.java:162)" v1.5.7

2012-09-24 Thread yesotaso
Created WICKET-4780 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Regarding-WARN-WebPageRenderer-java-162-v1-5-7-tp4651245p4652288.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Regarding "WARN - (WebPageRenderer.java:162)" v1.5.7

2012-09-24 Thread Martin Grigorov
Hi, On Mon, Sep 24, 2012 at 4:00 PM, yesotaso wrote: > Just tested with 6.0: > > create new project: "mvn archetype:generate > -DarchetypeGroupId=org.apache.wicket > -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=6.0.0 > -DgroupId=com.mycompany -DartifactId=myproject > -Darc

Re: Regarding "WARN - (WebPageRenderer.java:162)" v1.5.7

2012-09-24 Thread yesotaso
Just tested with 6.0: create new project: "mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=6.0.0 -DgroupId=com.mycompany -DartifactId=myproject -DarchetypeRepository=https://repository.apache.org/ -DinteractiveMode=fa

Re: Datepicker with range selection support

2012-09-24 Thread Sebastien
James, thanks for your comment. Yes, the demo site is a functional wicket app. You can get the source at the github project. Sebastien, you are welcome! Thanks to let me know what you finally did... Best regards, Sebastien. On Mon, Sep 24, 2012 at 3:06 AM, James Eliyezar wrote: > This is reall

Re: Wicket6 and big (>100 rows) list with ajaxbehaviour: slow

2012-09-24 Thread obell
Hehe.. Forgot to check different browsers, and to my surprise the only browser with a significant slowdown is Chrome... :o) IE8 and Firefox had basically no difference in the timing... Good idea with the event listener on the table, but I would think that makes the java-code uglier? With my work

Re: Wicket6 and big (>100 rows) list with ajaxbehaviour: slow

2012-09-24 Thread Martin Grigorov
Hi, Which browser do you use ? I guess it is worst with IE. In general having a big table with many event listeners (inline or not) will lead to slower rendering. In our app we also need a table with many rows/columns and we use event delegation - there is only one event listener attached at the

Wicket6 and big (>100 rows) list with ajaxbehaviour: slow

2012-09-24 Thread obell
In Wicket 6 ajax events changed from being inline ( I have worked around this, but I would really prefer the official way... Is this being looked at, or is it just unavoidable because of the new way of doing things? On my pc, I get about 3 seconds extra wait-time in wicket