Hi,
How can I access an attribute of a BrowserView's context if the
attribute's name is not hardcoded?
Example:
Works: self.context.myattribute
Works: removeSecurityProxy(self.context).__getattribute__('myattribute')
What I want to do:
Doesn't work: self.context.__getattribute__('myattribute')
Regards,
Frank