Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

It is possible to change the language text or to load external JavaScript files into the page. Any file ending in .js that is located in the /www/INSTANCENAME/htdocs/profoundui/userdata/extension/jumpstart IFS directory will be loaded with the JumpStart page. For example, a file named settings.js in the default Profound UI installation would be in /www/profoundui/htdocs/profoundui/userdata/extension/jumpstart/settings.js .

 

You may want to control the generated field descriptions pragmatically.  You can do this by assigning a function like below.  

In this example the first letter of each word to be in uppercase.

Code Block
pui.DbDescriptionTransform = function(fieldDesc) {
   return fieldDesc.toLowerCase().replace(/\b./g, function(a){ return a.toUpperCase(); } );
}