My tml is like this:

<ul t:type="any" t:mixins="A" t:input="comp:input">

</ul>
<input type="TextField" t:id="input"/>

Mixins "A"

@Parameter
private AbstractField input;

void afterRender(){
  //print the input is not null
 System.out.println(input);
  //print the input.getClient() is null
  System.out.println(input.getClient());
}

Is the TextField is loaded after the mixins so I can not get the input's
clientId?

AnyOne can help me,Thanks a lot.


In my mixins "A" 's  js file I use the $(input)

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Mixins-can-not-get-the-parameter-s-clientid-tp4703871p4703871.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to