Back button

2010-04-23 Thread Martin Asenov
Hello, everyone! I've got a page with a repeater with cells - every single cell has a link in it. However, when you go to another page and afterwards press the Back button and click one of the links, the following exc is thrown: WicketMessage: org.apache.wicket.WicketRuntimeException:

Re: wickestuff-push not working with jetty standalone

2010-04-23 Thread vineet semwal
hi, thanks for direction,atleast now i am sure it's jetty issue.. actually i don't see any error in logs so can't say what is missing.. i am also searching jetty mailing list . thanks again, On Thu, Apr 22, 2010 at 9:16 PM, Rodolfo Hansen kry...@gmail.com wrote: Hi, Check the logs and see

Wicket 1.4 upgrade - dependent on Wicket Security 1.4

2010-04-23 Thread Ben Swenka
Hello, We’ve been using Wicket 1.3.7 for quite a while now. We’ve been waiting to upgrade to Wicket 1.4 until Wicket Security 1.4 was in a released/production state. Can anybody provide any insight into the current state of Wicket Security 1.4? Would you recommend upgrading with the Beta 1

Re: Strip header contributors from Ajax response.

2010-04-23 Thread Pointbreak
if (!AjaxRequestTarget.get()) renderMyJavascript(); On Thu, 22 Apr 2010 09:10 +0530, Apple Grew appleg...@gmail.com wrote: I have a component which contributes Js headers. This component is also rendered by AjaxRequestTarget. The problem is that when rendering ajax response the Js codes

Re: Wicket 1.4 upgrade - dependent on Wicket Security 1.4

2010-04-23 Thread Martijn Dashorst
We're about to migrate our 800+ page application from 1.3.7 to 1.4.x which heavily uses Wicket Security. So while the codebase for Wicket Security 1.4 is already pretty stable we really want to ensure everything works before we put a final/stable sticker on Wicket Security 1.4. Expect a Wicket

Re: Caching static assets from markup

2010-04-23 Thread Martijn Dashorst
If the images are in your context there's nothing Wicket does to serve them. Your container handles those resources. See your container's documentation for cache headers and such. Martijn On Fri, Apr 23, 2010 at 12:11 AM, Phillip B phillip...@gmail.com wrote: I have several images and other

Re: Caching static assets from markup

2010-04-23 Thread Phillip B
So images in WebContent/images that are in markup as img src=images/hi.jpg / aren't passed through Wicket? Does Wicket just prepend the base URL when the page is built? What class(es) manage this behavior? On Fri, Apr 23, 2010 at 7:34 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: If the

Wicket Developer Role in Portsmouth, Hampshire, England

2010-04-23 Thread James Perry
CPG Logistics, a supply chain to the pharmaceutical industry, are seeking a strong Wicket developer on a permanent basis. The work is predominately greenfield projects and both enhancements and maintenance to existing projects. The developer they seek must have strong Wicket skills to produce a

HttpsRequestCycleProcessor goes back to http on form failure

2010-04-23 Thread Istvan Soos
Hi, I'm using HttpsRequestCycleProcessor and it works in most of the cases. However... My login form is https protected. My non-bookmarkable urls are encrypted. On my login form, if the user misses the password, it will get notified (part of the form gets red) and it has the chance to start

is there some Ajax behavior updating only a component internal state/data ?

2010-04-23 Thread Joseph Pachod
hi I just stumbled upon that AjaxFormComponentUpdatingBehavior directly updates the backing model, providing the component validates itself. This was quite unexpected. Indeed, if I've two RequiredTextFields with one valid and the other not, submitting this form won't update the backing

Re: Caching static assets from markup

2010-04-23 Thread Igor Vaynberg
RelativePathPrefixHandler takes care of making sure all static urls stay context-relative. -igor On Fri, Apr 23, 2010 at 6:11 AM, Phillip B phillip...@gmail.com wrote: So images in WebContent/images that are in markup as img src=images/hi.jpg / aren't passed through Wicket? Does Wicket just

Re: WicketServlet-filestore and FileNotFoundException

2010-04-23 Thread Jesper Tejlgaard
Hi Steve Did you ever find out if the Cluster setup provoked the problem? Best regards, Jesper -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/WicketServlet-filestore-and-FileNotFoundException-tp1878047p2062342.html Sent from the Wicket - User mailing list archive

Re: is there some Ajax behavior updating only a component internal state/data ?

2010-04-23 Thread Igor Vaynberg
there is ajaxformsubmitting behavior which will update the entire form -igor On Fri, Apr 23, 2010 at 8:01 AM, Joseph Pachod j...@thomas-daily.de wrote: hi I just stumbled upon that AjaxFormComponentUpdatingBehavior directly updates the backing model, providing the component validates itself.

Re: is there some Ajax behavior updating only a component internal state/data ?

2010-04-23 Thread Joseph Pachod
Igor Vaynberg wrote: there is ajaxformsubmitting behavior which will update the entire form -igor thanks however, that's not exactly my need, being just recording the user input (not to loose it) without validating. Is there no way around, like a hook from Ajax to act only on some

Re: is there some Ajax behavior updating only a component internal state/data ?

2010-04-23 Thread Martin Makundi
Here: /** * Submits form without validating it. * * @author Martin */ public abstract class AjaxFormSubmittingChangeListenerBehavior extends AjaxFormSubmitBehavior { private final static Method hiddenFieldGetter; static { try { hiddenFieldGetter =

RE: Back button

2010-04-23 Thread Martin Asenov
Would someone assist me on this? Thank you in advance! -Original Message- From: Martin Asenov [mailto:mase...@velti.com] Sent: Friday, April 23, 2010 9:38 AM To: users@wicket.apache.org Subject: Back button Hello, everyone! I've got a page with a repeater with cells - every single

Re: is there some Ajax behavior updating only a component internal state/data ?

2010-04-23 Thread Joseph Pachod
Martin Makundi wrote: Here: (..) looks promising, thanks a lot I'll test it on Monday (week end calling soon and.. urgent stuff to do in between) thanks again :) ++ joseph - To unsubscribe, e-mail:

Re: Back button

2010-04-23 Thread Igor Vaynberg
reproduce it in a quickstart and attach it to a jira issue -igor On Fri, Apr 23, 2010 at 8:32 AM, Martin Asenov mase...@velti.com wrote: Would someone assist me on this? Thank you in advance! -Original Message- From: Martin Asenov [mailto:mase...@velti.com] Sent: Friday, April 23,

Re: Session created on each request when writing JSON or XML response

2010-04-23 Thread Igor Vaynberg
the page is stateless so the session is not persisted, if you want to force it call getsession().bind(); -igor On Fri, Apr 23, 2010 at 9:42 AM, sonxurxo sonxu...@gmail.com wrote: Hi all, when I access pages like this : public BasePage(PageParameters pageParameters) {        

Re: WicketServlet-filestore and FileNotFoundException

2010-04-23 Thread shetc
What a coincidence -- I was just talking about that issue yesterday. Sorry, haven't had a chance to conduct the next experiment with 2 nodes in a cluster. We have a new app coming out in a couple of months and I want to make this issue part of the performance testing. I'll update this thread when

Re: Back button

2010-04-23 Thread Douglas Ferguson
Could this possibly happen if the following occurred. 1) Load a page with a repeater on it 2) Click on an ajax link that would remove an item from the repeater 3) Click the back button. Click on the link for the item you removed. D/ On Apr 23, 2010, at 10:32 AM, Martin Asenov wrote: Would

Re: Back button

2010-04-23 Thread Igor Vaynberg
the back button should roll the page back to the state that contained the item -igor On Fri, Apr 23, 2010 at 9:28 PM, Douglas Ferguson doug...@douglasferguson.us wrote: Could this possibly happen if the following occurred. 1) Load a page with a repeater on it 2) Click on an ajax link that