[Seaside] No walkback when error in form callback when form is submitted by another a batched list

Avi Bryant avi.bryant at gmail.com
Mon Mar 21 22:32:02 CET 2005


On Fri, 18 Mar 2005 16:16:01 +0800, Yar Hwee Boon <hboon at motionobj.com> wrote:
> File in the code below and then go to the application /xx. Click on any
> of the buttons and it should hit a self halt. Click proceed and then a
> walkback should be shown. Now go back to /xx again and click on "2" or
> ">". This time the walkback will not show after the halt. Does anyone
> know why?
> 
> The WABatchList subclass is modified to do a form submit when a link is
> clicked. Thanks.

Your change set didn't include an implementation of your
#submitFormOnClick: method, but it seems like it submits two requests
simultaneously: a GET for the link and a POST for the form.  This is
at least part of the problem: the browser is displaying the response
for the GET request (which has no error) but ignoring the response for
the POST.

Avi


More information about the Seaside mailing list