[Zope-dev] ZPivotTable doesnt save its data dictionary
   
    Jens Vagelpohl
     
    jens@digicool.com
       
    Sun, 13 May 2001 11:22:14 -0400
    
    
  
florian,
as far as i know you can call superValues from DTML. it returns a list of
objects. you could do something like this:
<dtml-in expr="folder_name.superValues(['Meta Type 1', 'Meta Type 2'])">
  <dtml-if name="sequence-start">
    <select name="my_select_list">
  </dtml-if>
  <dtml-with sequence-item only>
    <option value="&dtml-getId;">&dtml-title;</option>
  </dtml-with>
  <dtml-if name="sequence-end">
    </select>
  </dtml-if>
<dtml-else>
  <p><b>Cannot find anything!</b></p>
</dtml-in>
jens
On 5/13/01 10:43, "florian_reiser@gmx.de" <florian_reiser@gmx.de> wrote:
> jens,
> 
> thanks for your reply. It helped me a lot.
> 
> Do you have me a tip how I can get all Z SQL Methods in an selection field.
> I've found the superValues('Z SQL Method') function, but I'm having problems
> using it, because it can only be used in python.
> 
> So how can I get the result returned from this function in my dtml form?
> 
> thanx in advance
> 
> florian
>