You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2013/07/16 19:00:51 UTC

[jira] [Closed] (TAP5-2060) 5.4-alpha-2 - Markup in eventlink body prevents ajax

     [ https://issues.apache.org/jira/browse/TAP5-2060?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-2060.
--------------------------------------

    Resolution: Fixed
      Assignee: Howard M. Lewis Ship

I believe this was fixed by commit 5898990d67ceeba49b1b9cc92f1653a8e6ea816d.
                
> 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
>            Assignee: Howard M. Lewis Ship
>         Attachments: closest_data_update_zone.patch
>
>
> 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