You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2014/08/04 10:44:12 UTC

[jira] [Commented] (TAP5-2100) ZoneRefresh mixin triggers refresh event with wrong context

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

ASF subversion and git services commented on TAP5-2100:
-------------------------------------------------------

Commit e087cad11d609bc251727be91bf3d523811d541d in tapestry-5's branch refs/heads/master from [~sody]
[ https://git-wip-us.apache.org/repos/asf?p=tapestry-5.git;h=e087cad ]

TAP5-2100: ZoneRefresh mixin triggers refresh event with wrong context


> 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, 5.4
>            Reporter: Ivan Khalopik
>            Assignee: Jochen Kemnade
>              Labels: patch
>             Fix For: 5.4
>
>         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 was sent by Atlassian JIRA
(v6.2#6252)