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 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 would remove an item from

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 so

Re: Back button

2010-04-23 Thread Douglas Ferguson
I see this alot in my production logs as well. I thought that it was just a "gotcha" with wicket. Please let me know if you are unable to get a quick start and I'll see what I can do. D/ On Apr 23, 2010, at 11:09 AM, Igor Vaynberg wrote: > reproduce it in a quickstart and attach it to a jira

RE: Wicket 1.4 upgrade - dependent on Wicket Security 1.4

2010-04-23 Thread Ben Swenka
Thanks Martijn - great to hear! Given your info, we are going to proceed with our own testing as well. We will make sure to report back with any issues that we come across. Thanks again, Ben -Original Message- From: Martijn Dashorst [mailto:martijn.dasho...@gmail.com] Sent: Friday, April

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

2010-04-23 Thread sonxurxo
Oks, thanks! Un saludo. Xurxo Méndez Pérez Runner for Android: http://www.androidrunner.com http://blog.androidrunner.com 2010/4/23 Igor Vaynberg-2 [via Apache Wicket] < ml-node+2062519-941366248-241...@n4.nabble.com > > the page is stateless so the session is not persisted, if you want to >

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: 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 wrote: > > Hi all, > when I access pages like this : > > public BasePage(PageParameters pageParameters) { >        super(pageParameters); >    

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 wrote: > 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

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: users-unsubscr...@wic

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 cell

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 = Form.class.getDeclaredMethod

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 compone

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 wrote: > hi > > I just stumbled upon that AjaxFormComponentUpdatingBehavior directly updates > the backing model, providing the component validates itself. > > This was qui

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 a

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 wrote: > So images in WebContent/images that are in markup as src="images/hi.jpg" /> aren't passed through Wicket? Does Wicket just > prepend the base URL

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 model

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 over

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 sca

Re: Caching static assets from markup

2010-04-23 Thread Phillip B
So images in WebContent/images that are in markup as 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 wrote: > If the images are in your context there's nothing Wicke

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 wrote: > I have several images and other static assets that are

Re: Building tinymce-examples from wicketstuff

2010-04-23 Thread nicolas melendez
I use YUI editor, and was really easy to integrate to wicket, you only set and read a model of a textarea with wicket. NM On Fri, Apr 23, 2010 at 9:11 AM, Pointbreak > wrote: > > tinymce-parent.tinymce.src.main.java.wicket.contrib.tinymce.settings.TinyMCESettings > is not a class, wicket.contrib

Re: Building tinymce-examples from wicketstuff

2010-04-23 Thread Pointbreak
tinymce-parent.tinymce.src.main.java.wicket.contrib.tinymce.settings.TinyMCESettings is not a class, wicket.contrib.tinymce.settings.TinyMCESettings is. This has nothing to do with inner static classes, but with the way you set your paths during compilation. On Fri, 23 Apr 2010 13:07 +0200, "Micha

Building tinymce-examples from wicketstuff

2010-04-23 Thread Michał Letyński
Did somebody build tinymce-examples from wicketstuff ? I get strange exception. C:/workspace1/wicketstuff-core/tinymce-parent/tinymce-examples/src/main/java/wic ket/contrib/examples/tinymce/AjaxTinyMCEPage.java:[8,-1] cannot access wicket.co ntrib.tinymce.settings.TinyMCESettings bad class fil

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 Sec

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" 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 too are getting r

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 co