Hi,
I have a Product with a Label called Foo. Now what can i do, that when
anyone clicked on the tab Foo first the function bar() is called and
after that the HTML-File is displayed.
as
manage_options =({'label':'Foo', 'action':'manage_propertiesForm'},)
def bar(self):
do anything before displaying the HTMLFile
def manage_propertiesForm(self,REQUEST):
""" doc string """
self.bar()
return HTMLFile('edit_NetzwerkForm', globals())
_______________________________________________
Zope-Dev maillist - [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope-dev
** No cross posts or HTML encoding! **
(Related lists -
http://lists.zope.org/mailman/listinfo/zope-announce
http://lists.zope.org/mailman/listinfo/zope )