Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
This can be solved by using a multi datalist formatter plugin to sequentially use a bean shell beanshell formatter before using the process status formatter. The bean shell code below is used to display status bar only for records that are "Resolved".
Code Block | ||
---|---|---|
| ||
String status = row.get("status"); if(status.equals("Resolved")){ return value; }else{ return null; } |
...