Hi,
The Any component is gone and now
<div t:type="any" class="prop:someProperty">...</div>
is now just:
<div class="${someProperty}">...</div>
but is it possible since it's gone to add a mixin to and element like
<div t:mixins="myLayout">My layout</div>
When I try this case tapestry throw me this error :
You may not specify mixins for element <div> because it does not
represent a component (which requires either an id attribute or a type
attribute)
Ok so a :
<div t:id="myId" t:mixins="myLayout">My layout</div>
Embedded component 'subLayout' has no type. You should specify a type
in the component template, or define the component inside class ....
Any solution ?
Thanks.