Change property heading
Release 2017.2.
I have created a class that extends Ens.BusinessOperation, and in my class I have defined a custom property. How can I change the property's heading that is displayed on the Management Portal Settings tab?
Comments
Hi Larry,
Have you added the property into the SETTINGS parameter, e.g.
Property Foobar As %String;
If its not in the SETTINGS then it won't appear on the config UI settings.
Sean.
Ahh, just re-read your question, I think your asking how to change the settings label?
You will need to change the language lookup value, take a look at...
^CacheMsg("EnsColumns","en")
I got it to work using the set command. Had to use "en-us", though. Can I assume that this needs to be done only once in each namespace in which it will be used? I made the change via a Terminal session; is there a way to do it in the class code (ObjectScript) itself?