can someone tell me what the difference is between an fi:group and ft:group? I ask i relation to:
http://cocoon.apache.org/2.1/userdocs/ajax.html
Quote:
'Container widgets must enclose a container element
The Ajax support of Cocoon Forms works by sending partial page updates to the browser. This requires the representation of widgets to be contained in a single element, which becomes the "replacement unit" for that widget.
The styling stylesheets take care of this for terminal widgets such as fields and actions, but not for container widgets whose layout are completely defined by the page template. Concretely, this means that <ft:repeater>, <ft:group> and <ft:union> instructions must contain a single element such as HTML <div>, <table>, <span>, etc.
<ft:group id="info">In my jx I have the following type of widget definitions:
<div>
<p><ft:widget id="foo"/></p>
<p><ft:widget id="bar"/></p>
</div>
</ft:group> '
<fi:group>
<fi:items>
<ft:widget id="credit">
<fi:styling class="keyinbox" submit-on-change="true"/>
</ft:widget>
</fi:items>
</fi:group>
Is it required in this example to wrap the ft:widget section inside <DIV /> tags?
regards
Andrew
