Hi all;

I'm trying to refactor this typical use of a live-editor-innards tag:

<feckless-fieldset fields="addresses_current">
  <addresses-current-view:>
    <div part="div-live-editor-part-addresses-current">
      <live-editor-innards updates="#div-messages"/>
    </div>
  </addresses-current-view:>
</feckless-fieldset>


to be this:

 <live-filing-field field-tag="addresses-current-view" filing="&@filing" 
field-name='addresses_current'/>


using this tag definition: 

<def tag="live-filing-field" attrs="filing, field-tag, field-name">
  <do with="&filing">
    <feckless-fieldset fields="&field_name">
      <call-tag tag="&field_tag">
        <div part="div-live-editor-part" id="div-#{field_name}">
          <live-editor-innards updates="#div-messages"/>
        </div>
      </call-tag>
    </feckless-fieldset>
  </do>
</def>

But, I'm missing something and the formlet tag is not being created. I 
simply get the fieldset being created.

(I'm aware that dynamic part names are not valid, but that doesn't seem to 
be the problem, as only one instance of my tag on the page also does not 
work.)

Any sharp eyes out there? Am I using call-tag correctly? 

Tim


-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to hobousers+unsubscr...@googlegroups.com.
To post to this group, send email to hobousers@googlegroups.com.
Visit this group at https://groups.google.com/group/hobousers.
For more options, visit https://groups.google.com/d/optout.

Reply via email to