RE: possible security bug or tapestry bug beta-22

2014-12-01 Thread nhhockeyplayer nashua
Is this necessary ? Is there a way to resolve ? Cant say I am impressed with the performance when this thing is fully loaded. Trying to find a way for this to work. HTTP ERROR 500 Problem accessing /psi/home.galleryform/player. Reason: Form too large1051684>20Caused by:java.lang.Illegal

Re: problem with jquery.DialogAjaxLink

2014-12-01 Thread Christian Riedel
Yes, there’s a bug in the version you use, which got fixed in 3.4.1-SNAPSHOT (3.4.1 will be released soon, I guess). Use the SNAPSHOT version or a custom release based on its code. Check out the master-5.3 branch: https://github.com/got5/tapestry5-jquery/tree/master-5.3 > Am 02.12.2014 um 01:59

Re: Prevent double or more submissions.

2014-12-01 Thread Charlouze
@Thiago: I'd like to inform my user that the form is currently being sent (using an ajax request). That's why I need something similar to the clickOnce example. Do you think that adding a validation error event isn't a good idea anyway ? (It would probably serves other purpose for other people) @H

problem with jquery.DialogAjaxLink

2014-12-01 Thread nn kk
I have the following code: I have the zone and the dialog inside it... And everything works on my local, when I click the link I see the following request: POST http://localhost:8080/MyPrj/mainadminpage.halfsea

Re: Prevent double or more submissions.

2014-12-01 Thread Harry Zhou
Below is the source of a ClickOnce mixin I wrote for 5.4. Hopefully it helps. Note that the mixin should be applied to a element. 1. Trivial java class package some.package.name.mixins; // Insert package name. That "mixins" has to be there. import org.apache.tapestry5.ClientElement; import

Re: Prevent double or more submissions.

2014-12-01 Thread Thiago H de Paula Figueiredo
On Mon, 01 Dec 2014 16:05:02 -0200, Charlouze wrote: I'm not sure to understand what you mean... jumpstart example uses plain old js and does not work with tapestry client-side validation. I mean something like http://stackoverflow.com/questions/926816/how-to-prevent-form-from-submitting-mu

Re: Prevent double or more submissions.

2014-12-01 Thread Charlouze
I'm not sure to understand what you mean... jumpstart example uses plain old js and does not work with tapestry client-side validation. 2014-12-01 18:59 GMT+01:00 Thiago H de Paula Figueiredo : > Have you tried plain old JavaScript double form submission avoiding? > Anyway, you don't need to ove

Re: Prevent double or more submissions.

2014-12-01 Thread Thiago H de Paula Figueiredo
Have you tried plain old JavaScript double form submission avoiding? Anyway, you don't need to override anything from Tapestry's JS for that at all. On Mon, 01 Dec 2014 15:38:14 -0200, Charlouze wrote: Hey tapestry's users/gurus ! I need a way to prevent double form submission. I first ha

Prevent double or more submissions.

2014-12-01 Thread Charlouze
Hey tapestry's users/gurus ! I need a way to prevent double form submission. I first had a look at this example from jumpstart. As it is written, it conflicts with client-side form validation and I also need cl