[Zope] call TinyTable view method within DTML Method
Dieter Maurer
dieter@handshake.de
Fri, 3 Jan 2003 20:09:07 +0100
Tim Wilson wrote at 2003-1-2 13:57 -0600:
> I've got a TinyTable that I would like to render in my index_html. The
> TinyTable has a view method that does just what I need, but I can't figure
> out how to render the TinyTable as part of the page. Visiting
>
> http://path/to/TinyTableName
>
> works. As does
>
> http://path/to/TinyTableName/view
>
> but <dtml-var TinyTableName> doesn't. Nor do any of the other things I
> tried. Any hints?
Find out what parameters "TinyTable.view" wants (either
looking at the source or with my "DocFinder" product) and call it,
something like
<dtml-var expr="myTinyTable.view(...)">
Dieter