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

Ivan Khalopik updated TAP5-2100:
--------------------------------

    Attachment: 0001-TAP5-2100-ZoneRefresh-mixin-triggers-refresh-event-w.patch
    
> ZoneRefresh mixin triggers refresh event with wrong context
> -----------------------------------------------------------
>
>                 Key: TAP5-2100
>                 URL: https://issues.apache.org/jira/browse/TAP5-2100
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.3.6
>            Reporter: Ivan Khalopik
>         Attachments: 
> 0001-TAP5-2100-ZoneRefresh-mixin-triggers-refresh-event-w.patch
>
>
> ZoneRefresh mixin triggers refresh event with context populated from 
> parameter instead of context from event link. 
> Before render script it creates event link with context:
>    private Object createEventLink()
>    {
>       Link link = resources.createEventLink("zoneRefresh", context);
>       return link.toAbsoluteURI();
>    }
>    
> But then it uses context parameter instead of context from event link:
>    Object onZoneRefresh()
>    {
>       CaptureResultCallback<Object> callback = new 
> CaptureResultCallback<Object>();
>       resources.triggerEvent(EventConstants.REFRESH, context, callback);
>       
>       if(callback.getResult() != null){
>          return callback.getResult();
>       }
>       
>       return zone.getBody();
>    }

--
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