i m using bonitasoft community 6.3
on confromation i just downloaded defauly html generated. and add table on it , but now i want to display some process variable’s data into that table .
how can i get this process variable data from that html
pl pl specify need code .
how can i refactor this code .
TEST |
DATA FORM PROCESS VAR |
TEST |
$TEST |
TEST |
$TEST |
Hi,
The html template will allow you to change the position of the different div, add local javascript, change stylesheet, eventually adding links toward other application or show data from other sources.
If you want to display data from the process, the content will need to be managed from the “message confirmation” box below the selected “message layout”. The value here will be then displayed in the html div id=“bonita_form_confirm_message”. For instance to show a table with two process data email & name, you can configure a groovy script such as:
return "
name | "+name+" |
email | "+email+" |
"
Cheers,
Renaud