You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Ivan Khalopik (JIRA)" <ji...@apache.org> on 2013/03/28 17:37:22 UTC

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

Ivan Khalopik created TAP5-2100:
-----------------------------------

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


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