[Zope] Accessing Properties of a ZClass-Instance via the <a href...>-tag

Kevin Dangoor kid@kendermedia.com
Tue, 15 Feb 2000 10:58:32 -0500


----- Original Message -----
From: "Nico Grubert" <nico@beehive.de>
To: <zope@zope.org>
Sent: Monday, February 14, 2000 7:04 AM
Subject: [Zope] Accessing Properties of a ZClass-Instance via the <a
href...>-tag


> I'm creating some Zclass-instance. Clicking on an Instance which is
> inside of a folder will show me the property-view so I can change the
> properties of the object for instance the value for "Name".
> This little view_html shows all the Zclass-instances which are in the
> folder.
>
> <dtml-in "PARENTS[0].objectValues(['CD'])" sort=id>
> <tr bgcolor="#FFBB88">
> <td><a href="<____?_______>"><dtml-var id></a></td>

Try this (untested):

<a href="<dtml-var
absolute_url>/propertysheets/YourPropertySheetNameGoesHere/manage">

> <td><dtml-var Name></td>
> <td><FORM ACTION="alter_html">
>     <input type=submit value=" EDIT ">
>     </FORM>
> </td>
> </tr>
> </dtml-in>

Kevin