[Zope] wrong redirection after save properties tab
Dieter Maurer
dieter@handshake.de
Fri, 24 Jan 2003 23:17:33 +0100
Holger Hees wrote at 2003-1-24 13:27 +0100:
> when i press the 'Save Changes' Button on the property tab the method
> manage_editProperties from the inherited class PropertyManager is called.
> after that i will redirect to the edit tab (i see it in the manage_tabs) but
> with content from the properties tab. whats wrong in my product. i do not
> implement manage_editProperties. I use the inherited method from
> PropertyManager Class.
Then, you see that you want to change this ;-)
Define your own "manage_editProperties" method.
In it, call the inherited one.
Then do what you want.
Dieter