Versions Compared

Key

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

...

NameDescription
Script

Script in Java.

Injected variables available for consumption are:-

  • datalist
  • column
  • row
  • value

Returns a String.

Code Block
titleSample Code
linenumberstrue
value = value + "append this text to every column value";
 
return value;

 

It is also possible to inject hash variables into the values.

Code Block
titleSample Code
linenumberstrue
value = value + " #currentUser.firstName#";
 
return value;