RE: Wiquery experiences

2011-04-07 Thread Hielke Hoeve
WiQuery *has* matured a lot. We are working hard in our late hours to implement and test interfaces to all facets of jQuery and are getting ready for Wicket 1.5. Bruno is right that for some purposes it is easy using only jQuery, simply add the jQuery js files you want and write a script tag

Re: Wiquery experiences

2011-04-07 Thread Ioannis Canellos
The best thing to do is use the right tool for the right job. I personally use both plain jquery and wiquery and I am happy with it. On Thu, Apr 7, 2011 at 10:54 AM, Hielke Hoeve hielke.ho...@topicus.nlwrote: WiQuery *has* matured a lot. We are working hard in our late hours to implement and

Re: Wicket cannot work on OC4J (ias 10g)?

2011-04-07 Thread Eirik Lygre
The traditional workaround for OC4J is to use the WicketServlet rather than the WicketFilter. The reason the WicketFilter does not work, though, is normally that there is nothing to filter. OC4J will first look for the resource (e.g. /), and only if it find this resource will it actually apply

Re: Wiquery experiences

2011-04-07 Thread Maarten Billemont
On 07 Apr 2011, at 09:54, Hielke Hoeve wrote: Maarten says: Writing what should be JavaScript in your wicket Java code is quite out-of-place, and generally all you need to do is place your code where it belongs, in a .js or your markup. I wonder if he ever really used WiQuery or

Re: Wiquery experiences

2011-04-07 Thread Live Nono
Hi Hielke Nice to be able to discuss with some wiquery commiter. Acutally, I was willing to use it some time ago but I found wiquery wasn't very good at selling itself. The wiki is pretty old and useless (http://code.google.com/p/wiquery/wiki/DocumentationHome?tm=6) and at the time I found no

Re: Wiquery experiences

2011-04-07 Thread Ernesto Reinaldo Barreiro
Joseph, Well it is true the documentation is not updated and there is not much to start with... but mind that WiQuery is maintained by people that do this mostly on their free time... I think 1- support on the google group is rather good 2- the speed on fixing bugs and reacting to user input is

RE: Wiquery experiences

2011-04-07 Thread Hielke Hoeve
The wiki is quite outdated, except for a small and somewhat hidden area: http://code.google.com/p/wiquery/wiki/QuickStart The WiQuery plugins project isn't really well known and our project site does not point to it, but it a good start to see how applications can be converted, as it also

Re: Wiquery experiences

2011-04-07 Thread Live Nono
Ernesto, Hielke thanks a lot for your answers At the time I looked at wiquery, it was for some specific task. This task didn't include explorating whether a full blown jquery/wicket integration framework would fit our needs. This is quite a task on its own imho, and there the lack of

RE: Wiquery experiences

2011-04-07 Thread Hielke Hoeve
-Original Message- From: msj121 [mailto:msj...@gmail.com] Sent: donderdag 7 april 2011 2:13 To: users@wicket.apache.org Subject: Re: Wiquery experiences I both agree and disagree with the aforementioned comments. I don't think anyone would disagree that writing JavaScript from wicket

Redirect back to wicket page problem

2011-04-07 Thread harrytalky
I am having a populate details link on my page which redirects to linkedin site to authorize user and fetch his information back to wicket page. What is happening right now is when user click continue on linkedin site to move back to the our site then a pin is sent to the page. Using this pin we

Re: Redirect back to wicket page problem

2011-04-07 Thread Martin Grigorov
check for img src=/ in your page markup. this would cause a second request to the page itself there is a IResponseFilter in Wicket for this problem: EmptySrcAttributeCheckFilter it is enabled only in DEV mode in newer versions On Thu, Apr 7, 2011 at 12:18 PM, harrytalky harryta...@gmail.com

RE: Wiquery experiences

2011-04-07 Thread msj121
Keep in mind I do use WiQuery myself primarily for the Resource Manager, my main point was that this is the main reason to use WiQuery, like you mentioned, and that it should only be viewed as an interface was in my opinion more of a compliment to well written code. And of course people who don't

SpringComponentInjector and non-Wicket servlets

2011-04-07 Thread jsinai
We are seeing an intermittent problem with our webapp, where we are seeing the exception below. We have servlets other than Wicket's in our webapp, which provide remote services. The problem seems to be that somehow the Wicket proxy for a given Spring bean is being requested, perhaps from a

Stateless form throws Unexpected RuntimeException

2011-04-07 Thread Juansoft
Hello i am getting a strange problem when i use stateless form in a simple wicket stateless page. this is the HTML side: Test! Enter And this is the java side: public final class Test extends WebPage { public Test () {

Re: SpringComponentInjector and non-Wicket servlets

2011-04-07 Thread Igor Vaynberg
the proxies wicket generates are only to be used by wicket, so do not pass those to other services. -igor On Thu, Apr 7, 2011 at 11:28 AM, jsinai jsi...@yahoo.com wrote: We are seeing an intermittent problem with our webapp, where we are seeing the exception below. We have servlets other than

Re: Stateless form throws Unexpected RuntimeException

2011-04-07 Thread Martin Grigorov
chain the constructors the form is never created when the ctor with PageParameters is used, i.e when you submit On Thu, Apr 7, 2011 at 8:30 PM, Juansoft andresnet2...@yahoo.es wrote: Hello i am getting a strange problem when i use stateless form in a simple wicket stateless page. this is

Re: SpringComponentInjector and non-Wicket servlets

2011-04-07 Thread Martin Grigorov
Or use WicketSessionFilter to export the Application and Session to other servlets Hacky but ... On Thu, Apr 7, 2011 at 9:41 PM, Igor Vaynberg igor.vaynb...@gmail.comwrote: the proxies wicket generates are only to be used by wicket, so do not pass those to other services. -igor On Thu,

Re: SpringComponentInjector and non-Wicket servlets

2011-04-07 Thread jsinai
Igor, thanks for your reply. But that's the weird thing: we are not passing those proxies to other services. We use the @SpringBean annotation only in the UI code. -- View this message in context:

Re: SpringComponentInjector and non-Wicket servlets

2011-04-07 Thread Igor Vaynberg
well, looks like com.hytrust.policy.update.DynamicUpdater is using a proxy, is that a wicket class? -igor On Thu, Apr 7, 2011 at 1:48 PM, jsinai jsi...@yahoo.com wrote: Igor, thanks for your reply. But that's the weird thing: we are not passing those proxies to other services. We use the

Re: SpringComponentInjector and non-Wicket servlets

2011-04-07 Thread vineet semwal
say you are using @springbean in a non component in a wicket thread and you are using it in a non wicket thread too, you can do something like below if(Application.exists()) { InjectorHolder.getInjector().inject(this); }else{ //set service my way

Re: SpringComponentInjector and non-Wicket servlets

2011-04-07 Thread jsinai
Thanks to Vineet and Igor for your help. I think I have an idea about what we've been doing wrong. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/SpringComponentInjector-and-non-Wicket-servlets-tp3434182p3434738.html Sent from the Users forum mailing list archive at