[ 
https://issues.apache.org/jira/browse/TAP5-2060?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13603281#comment-13603281
 ] 

Julien Blatecky commented on TAP5-2060:
---------------------------------------

This issue seems to be more accurate than TAP5-2077 I've opened because, like 
you said in TAP5-2077, it's not an ElementWrapper issue but a Zone issue that 
doesn't take the right Element to get the `data-update-zone` attribute. So I 
closed TAP5-2077.

I have a patch that implements closest in both dom and modify zone. I'll upload 
it very soon on this issue.
                
> 5.4-alpha-2 - Markup in eventlink body prevents ajax
> ----------------------------------------------------
>
>                 Key: TAP5-2060
>                 URL: https://issues.apache.org/jira/browse/TAP5-2060
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.4
>            Reporter: Lance
>
> When I use markup in an eventlink body, it prevents the eventlink from being 
> an ajax/XHR request. When I use a simple string as the eventlink body, the 
> ajax event fires as expected. This error does not occur in tapestry 5.3.6.
> For the following page:
> public class TestPage {
>    @Inject
>    private Request request;
>       
>    @Inject
>    private Block ajaxBlock;
>       
>    Block onDoIt() {
>       if (!request.isXHR()) throw new RuntimeException("Event is not ajax");
>       return ajaxBlock;
>    }
> }
> The following tml throws an "Event is not ajax request" exception
> TestPage.tml
> ==========
>    <t:zone t:id="myZone" />
>    <t:eventlink event="doIt" zone="myZone"><div>Link containing 
> markup</div></t:eventlink>
>    <t:block t:id="ajaxBlock">Hello World</t:block>
> Whereas this works fine (note that the eventlink body does not contain markup)
> TestPage.tml
> ==========
>    <t:zone t:id="myZone" />
>    <t:eventlink event="doIt" zone="myZone">Plain text link</t:eventlink>
>    <t:block t:id="ajaxBlock">Hello World</t:block>

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to