Hi,<br>the question I have is:<br>when a z3c.form is rendered, how can I tell to zope3 to use z3c.pagelet.browser.BrowserPagelet.__call__ and not z3c.form.form.Form.__call__ in order to use the layout defined by a global z3c:layout in zcml ?<br>
<br>Thanks for your help<br>Simon<br><br>The code part (copied from P. Carduner good tutorial):<br>---------------------<br><br>class IAdamaBrowserLayer(IPageletBrowserLayer, IFormLayer):<br>    &quot;&quot;&quot;The pagelet layer test skin.&quot;&quot;&quot;<br>
<br>class IAdamaBrowserSkin(IDivFormLayer, layer.IAdamaBrowserLayer):<br>    &quot;&quot;&quot;The pagelet layer test skin.&quot;&quot;&quot;<br><br>The zcml part:<br>--------------------<br>    &lt;interface<br>
        interface=&quot;.skin.IAdamaBrowserSkin&quot;<br>
        type=&quot;zope.publisher.interfaces.browser.IBrowserSkinType&quot;<br>
        name=&quot;Adama&quot;<br>
        /&gt;<br>
<br>
    &lt;z3c:layout<br>
        for=&quot;*&quot;<br>
        layer=&quot;z3c_auth.layer.IAdamaBrowserLayer&quot;<br>
        template=&quot;<a href="http://layout.pt">layout.pt</a>&quot;<br>
        /&gt;<br>
<br>
&lt;z3c:pagelet<br>
      name=&quot;search.html&quot;<br>
      for=&quot;zope.app.folder.interfaces.IFolder&quot;<br>
      layer=&quot;z3c_auth.layer.IAdamaBrowserLayer&quot;<br>
      permission=&quot;adama.site_access&quot;<br>
      class=&quot;.login.SearchAddForm&quot;<br>
/&gt;<br>
<br>
<br>
<br>