Versions Compared

Key

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

...

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
titleBean Shell BeanShell Code
String status = row.get("status");
if(status.equals("Resolved")){
return value; 
}else{
return null; 
}

...