Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Global Functions - Useful JavaScript Functions (BIRT)"

m (Comments)
(Comments)
Line 94: Line 94:
 
Actually, I had issues with the for loop in function UCWords.  It caused my eclipse environment to either run out of memory or to only return the first cell of a multiple cell table.   
 
Actually, I had issues with the for loop in function UCWords.  It caused my eclipse environment to either run out of memory or to only return the first cell of a multiple cell table.   
  
Instead, I re-coded to use:
+
<b>Instead, I re-coded to use:</b><br>
 
+
 
function UCWords(str){
+
function UCFirst(str){
var arrStr = str.split(" ");
+
  var arrStr = str.split(" ");
var strOut = "";
+
  var strOut = "";
var i = 0;
+
  var i = 0;
while (i < arrStr.length) {
+
  while (i < arrStr.length) {
firstChar  = arrStr[i].substring(0,1);
+
      firstChar  = arrStr[i].substring(0,1);
remainChar = arrStr[i].substring(1);
+
      remainChar = arrStr[i].substring(1);
firstChar  = firstChar.toUpperCase();  
+
      firstChar  = firstChar.toUpperCase();  
  remainChar = remainChar.toLowerCase();
+
      remainChar = remainChar.toLowerCase();
strOut += firstChar + remainChar + ' ';
+
      strOut += firstChar + remainChar + ' ';
i++;
+
      i++;
}
+
  }
 
   return strOut.substr(0,strOut.length - 1);
 
   return strOut.substr(0,strOut.length - 1);
}
+
}
  
Skip Strickland
+
--[[User:Sstrickland.costco.com|Sstrickland.costco.com]] 19:49, 4 October 2007 (EDT)

Revision as of 19:49, 4 October 2007

< To: Report Developer Examples (BIRT)

Global Functions - Useful JavaScript Functions (BIRT) This example does not have a Bugzilla ID all code entered on the page.

Introduction

Basic JavaScript is a good language but there are significant bits of function that are not supported. This page contains examples of useful JavaScript functions that can assist with report development.

BIRT Version Compatibility

This example was built using version 2.2 M5.

Example Files

Rather than enter these examples as functions. Each example is just pasted here in the code.

Creating Global Functions

In order for these functions to be globally accessible the function needs to be added as a global. The recommended procedure here is to use the reportContext.setPersistentGlobalVariable(name, value) function. So lets imagine that we want to create a global logging function. We would want to add the following code to any Script handler that has access to the reportContext.

function log ( str ){
    Logger.getAnonymousLogger().info(str);
}
	
reportContext.setPersistentGlobalVariable("log", log);

From that point forward, any other expression or script can access logging by just calling log("message");

The most logical place to add the creation of your global functions is the initialize method of the Report component (the top component in the outline view). Alternately, you may want to add the function to a template.

The following is the collection of useful global functions.

Functions

UCFirst (upper case first letter)

Sometimes you want to be able to have just the first letter of word capitalized, at the start of a sentence for example. This function does that for you.

function UCFirst(str){
   // split string
   firstChar = str.substring(0,1);
   remainChar = str.substring(1);

   // convert case
   firstChar = firstChar.toUpperCase(); 
   remainChar = remainChar.toLowerCase();

   return firstChar + remainChar
} // Make function globally available reportContext.setPersistentGlobalVariable("UCFirst", UCFirst); USAGE
UCFisrt("ALLCAPS"); = gives => Allcaps
UCFirst("alllower"); = gives => Alllower
UCFirst("MiXeDuP"); = gives => Mixedup


UCWords (upper case the first character of each word in a string)

function UCWords(str) {
   // split string on spaces
   arrStr = str.split(" ");

   var strOut = ;

   for (i=0;i<arrStr.length;i++)
   {
       // split string
       firstChar = arrStr[i].substring(0,1);
       remainChar = arrStr[i].substring(1);

       // convert case
       firstChar = firstChar.toUpperCase(); 
       remainChar = remainChar.toLowerCase();

       strOut += firstChar + remainChar + ' ';
   }

   // return string, but drop the last space
   return strOut.substring(0, strOut.length - 1);
}

   // Make function globally available
   reportContext.setPersistentGlobalVariable("UCWords", UCWords);

   USAGE
UCWords("HELLO WORLD"); = gives => Hello World
UCWords("hello world"); = gives => Hello World
UCWords("hElLo WoRlD"); = gives => Hello World


Comments

Please enter comments below by selecting the edit icon to the right. You will need a Bugzilla account to add comments.


Actually, I had issues with the for loop in function UCWords. It caused my eclipse environment to either run out of memory or to only return the first cell of a multiple cell table.

Instead, I re-coded to use:

function UCFirst(str){
  var arrStr = str.split(" ");
  var strOut = "";
  var i = 0;
  while (i < arrStr.length) {
     firstChar  = arrStr[i].substring(0,1);
     remainChar = arrStr[i].substring(1);
     firstChar  = firstChar.toUpperCase(); 
     remainChar = remainChar.toLowerCase();
     strOut += firstChar + remainChar + ' ';
     i++;
  }
  return strOut.substr(0,strOut.length - 1);
}

--Sstrickland.costco.com 19:49, 4 October 2007 (EDT)

Back to the top