I'm trying to figure out how to change all instance properties to the initial(instance 1) settings. I want to make sure that the properties remain the same across all instances. Here is what I have at the moment, any ideas?
this setting sets the values to an [object][object] error.
IDEInstance.prototype.OnPropertyChanged = function(property_name)
{
this.properties["App ID"] = property_list[0];
this.properties["Language"] = property_list[1];
}
To better explain, I effectively only want to allow users to change the values on the first instance. I'd prefer to set the read only flag for the rest, but I can't seem to wrap my mind around it at this moment.