call TinyTable view method within DTML Method
Hi everyone, 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? -Tim -- Tim Wilson Twin Cities, Minnesota, USA Science teacher, Linux fan, Zope developer, Grad. student, Daddy mailto:wilson@visi.com | http://qwerk.org/ | public key: 0x8C0F8813
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
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
participants (2)
-
Dieter Maurer -
Tim Wilson