Maik Jablonski wrote:
> you could use something like:
>
> if hasattr(self, 'propertyid'):
> ... property exists in one of the parents...
hmmm, this is probably betterL
if self.hasProperty('propertyid'):
...property exists on self
cheers,
Chris