Re: confused with Page ContextType and onActivate with StreamResponse

2012-08-29 Thread Muhammad Gelbana
Check this page http://tapestry.apache.org/component-cheat-sheet.html And then try reading this article which should explain more about what I think you are trying to accomplish http://blog.tapestry5.de/index.php/2010/08/23/context-values-vs-request-parameters/ On Wed, Aug 29, 2012 at 7:17 AM,

confused with Page ContextType and onActivate with StreamResponse

2012-08-28 Thread jqzone
Some code like this Page class public class SearchUser{ @ActivationRequestParameter(value="filer") private String filter; @Inject private IStaffService staffService; private String staffId; protected void onActivate(String staffId){ this.staffId = staffId; } StreamResponse onActivat