[Zope] NameSpace Question

Michel Pelletier michel@digicool.com
Mon, 24 Apr 2000 20:32:26 -0700


Kapil Thangavelu wrote:
> 
> 
> short solution:
> you basically want to add some hidden variables to your form2 like
> <input type="hidden" value="<dtml-var row-items>" name="row-items>

This is essentially the correct answer, note that if row-items is a
sequence then you have to be more clever:

<dtml-in row-items>
  <input type=hidden name="row-items:list" value="<dtml-var
sequence-item>">
</dtml-in>

-Michel