For some reason your request is not being submitted as an ajax request. You
can verify it by

@Inject
private Request request;

@Inject
private Logger logger;

void onYourEventHandler(){
   logger.debug(request.isXHR());
}

This may be because of a JavaScript error, so try debugging through firebug
or chrome

regards
Taha


On Tue, Jul 12, 2011 at 7:43 AM, dick_hu <dickan...@gmail.com> wrote:

>
> Taha Hafeez wrote:
> >
> > The template is not visible, are you using zone parameter of
> > actionlink(you
> > should prefer eventlink over actionlink). Only then will the request be
> > ajax
> > based.
> >
> >
> the Test.tml
>
> <t:zone t:id="testZone">
>      <t:loop source="strs" value="str" index="index">
>          ${str}
>        <t:actionlink t:id="delete" zone="testZone" context="index">
>             delete
>         </t:actionlink>
>          <br/>
>      </t:loop>
> </t:zone>
>
>
> --
> View this message in context:
> http://tapestry.1045711.n5.nabble.com/A-problem-occur-at-loop-of-zone-tp4577377p4577397.html
> Sent from the Tapestry - User mailing list archive at Nabble.com.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
> For additional commands, e-mail: users-h...@tapestry.apache.org
>
>

Reply via email to