Hi there,
I've got a problem with my zimlet: I was messing with my zimlet dir inside its _dev folder, when I just found out that there's a "zombie" user property showing up when calling my _dlg_propertyEditor!
Let's explain this a little bit better: I started messing around with zimlets a couple of days ago just to get the hang of, before getting into it deeper and deeper aiming at what I finally want from my finished zimlet. In the beginning I used put lots of properties in the userProperties XML section; later on I removed one of these from the zimlet XML definition file, but still the stored value shows up when calling the preferences! Seems that once it's been stored in past deployments, this.createPropertyEditor() still finds it.
How can I remove it from the face of the earth?
Here is the ("stolen" txs to OSS!) code for showing the editor up:
Code:
if (this._dlg_propertyEditor) {
this._dlg_propertyEditor.dispose();
}
this._dlg_propertyEditor = null;
this.createPropertyEditor();
Keep up the good work, Z rocks!