From: pkoelle <pk...@gm...> - 2004-12-30 18:46:53
|
Ian Bicking wrote: > If you want something that gets triggered on every update, then > overriding _SO_setValue() and set() would probably make sense. It's not > a stable interface, in that it might get changed in the future (but not > for a little while at least). > Thanks Ian and Oleg, def _SO_setValue(self, name, value, fromPython, toPython): ...mystuff goes here...and name is the name of the column ;) super(Father, self)._SO_setValue(name, value, fromPython, toPython) seems to do the trick. thanks again Paul |