PropertyMgr.getProperty (key) |
returns the property of this object, creates the cache object
if necessary or reloads it if the raw content field was changed
(this can happen when if the parent object was edited somewhere
else and got invalidated in this app).
|
Sourcecode in PropertyMgr/objectFunctions.js:
1: function getProperty(key) { 2: this.evalCache(); 3: return this.cache.content[key]; 4: } |