2009/11/19 Jens Schwarz <blacky6...@gmx.de>:
>
> Is it possible to add (via yml) arbitrary markup *inside* of this div 
> *beside* the input? P.ex. ...
>
> <div class="text">
>  <input type="Text" name="foo"/>
>  Some <b>bold</b> text
> </div>

The only thing I can think of is:

  - type: Text
    name: foo
    comment_xml: 'Some <b>bold</b> text'

which will render as:

<div class="text comment">
<input name="foo" type="text" />
<span class="comment">
Some <b>bold</b> text
</span>
</div>

Carl

_______________________________________________
HTML-FormFu mailing list
HTML-FormFu@lists.scsys.co.uk
http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/html-formfu

Reply via email to