Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
borderColorgreen
borderWidth1
titleBGColor#ddffcc
borderStylesolid
titleDefinition
Bean Shell Datalist Action allows you to write custom Java code to perform custom actions on the datalist.
Panel
borderColorpurple
borderWidth1
titleBGColor#ddccff
borderStylesolid
titleNew Feature

This is a new feature in Joget Workflow v6.



Figure 1 : Hyperlink in the row action placeholder and in the bulk action placeholder in the datalist builder

...

NameDescription
LabelLink / Button label.
Confirmation MessageConfirmation message before performing action.
Script

Script in Java.

Injected variables available for consumption are:-

  • httpRequest
  • datalist
  • rowKeys
Code Block
titleSample Code
linenumberstrue
for (String key : rowKeys) {
System.out.println("Record key is " + key);
}

 

Figure 3 : Bean Shell Datalist Action Properties - Visibility Control

...