22 Mar
2002
22 Mar
'02
10:25 p.m.
A M Thomas writes:
Basically, I've made a ZClass, called SiteSection.... ... The ZClass has a property sheet (also called SiteSection)... ... I'm trying to set the other properties individually using manage_changeProperties, for example:
context.manage_changeProperties(NavShortDescription=request['NavShortDescription'])
...
Oddly, the title property (and MainText) are the only properties that are being set. You must use the "PropertySheet"s "manage_changeProperty" to change the properties in a property sheet:
context.propertysheets.SiteScection.manage_changeProperties(request) Dieter