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

Compare with Current View Page History

Version 1 Current »

Definition
Bean Shell Action allows you to write custom Java code to perform custom actions on the datalist.
New 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

 

Figure 2 : Bean Shell Datalist Action Properties

 

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

Script in Java.

Injected variables available for consumption are:-

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

 

Figure 3 : Bean Shell Datalist Action Properties - Visibility Control

 

NameDescription
RulesControls on when the action should appear based on the condition(s) set.

 

 

 

 

  • No labels