PropertyMgr.setProperty (key, value) |
sets a property of the cache object and updates the xml-content
at the parent object.
|
Sourcecode in PropertyMgr/objectFunctions.js:
1: function setProperty(key, value) { 2: if (!key) 3: return false; 4: this.evalCache(); 5: this.cache.content[key] = value.trim(); 6: this._parent[this.getDataField ()] = Xml.writeToString (this.cache.content); 7: } |