[Zope] set Properties in several Property Sheets in 1 call?
   
    Kapil Thangavelu
     
    k_vertigo@yahoo.com
       
    Sat, 22 Apr 2000 17:35:01 -0400
    
    
  
Kevin Howe wrote:
> 
> Hi All,
> 
> I have a form which posts to an update method, and would like to be able to
> do something to the effect of this:
> 
>  <!--#call "propertysheets.ALL.manage_changeProperties(REQUEST)"-->
> 
> and have each REQUEST property plugged into the Property Sheet where it
> resides.
> 
> It there any way to do this, or do you have to specify the sheet?
> 
> kh
in dtml:
<dtml-in "propertysheets.items()">
	<dtml-with sequence-item>
	<dtml-call "manage_changeProperties(REQUEST)">
	</dtml-with>
</dtml-in>
I've used code like this to create generic property change forms. 
Kapil
www.sin.wm.edu