Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

In a default installation, the JumpStart user-interface is found at a URL like http://yourMachineName:8080/jumpstart . The page loads only the JavaScript needed to present the user-interface in English.

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 .

 

API Functions:

DbDescriptionTransform: Used to control the field descriptions.  In the below example, it will upper case the first letter of each word.

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