Hello Team,
In my process, i call an RPA robot which returns an html code on a string Variable.
This String variable is stocked in my process with the name “HtmlCheckList”.
So to get variable on my form i used :
camForm.on(‘form-loaded’, function() {
camForm.variableManager.fetchVariable(‘HtmlCheckList’);
});
camForm.on(‘variables-restored’, function() {
$scope.HtmlCheckList = camForm.variableManager.variableValue(‘HtmlCheckList’);
//write my variable in my html page
document.getElementById(‘CheckList’).innerHTML = $scope.HtmlCheckList;
});and html tag :
div id=“CheckList”>
So, my html code contains a table in which one column is full of checkbox.
My problem is that i cannot see the boolean value of checkboxs in my process ( i’m using cam-variable).
Can you tell me why ?
Thank you