Page 1 of 1

pui.designer

Posted: Mon Nov 04, 2013 9:31 am
by esdaled
In the release notes for 4.6.7 there is the following change for the visual designer:
For new display files in the Visual Designer, add pui.designer["initial keywords"] setting and remove INDARA as a default keyword
However, I can't find any documentation for pui.designer. How would I add this setting to my custom theme?

Re: pui.designer

Posted: Mon Nov 04, 2013 10:10 am
by Scott Klement
If you wanted the INDARA keyword (or any other DDS keyword) to be automatically added to new display files, you could set up a custom JavaScript file and set the initial keywords property like this

Code: Select all

pui.designer["initial keywords"] = ["INDARA"];
This just causes this DDS keyword to be added automatically when a new display file is started in the designer.

Re: pui.designer

Posted: Mon Nov 04, 2013 11:23 am
by esdaled
thanks