Radio Buttons

Script for XOR gateway with 3 outputs.

Hi,

I have a (human) task in my BPMN where one of three options need to be selected on a form. I have used an XOR gate in the BPMN connecting the input to the outputs. In the forms I am using radio buttons to enable the selection of one of the three options, and have defined the returned key as 0, 1, 2.

How can I put this is in the script if the individual flows of the outputs of my XOR gateway.

Script for XOR gateway with 3 outputs.

Hi,

I have a (human) task in my BPMN where one of three options need to be selected on a form. I have used an XOR gate in the BPMN connecting the input to the outputs. In the forms I am using radio buttons to enable the selection of one of the three options, and have defined the returned key as 0, 1, 2.

How can I put this is in the script if the individual flows of the outputs of my XOR gateway.

how to set a default selection in a dynamically generated radio buttons

Hi,

I have a page made with UI designer which contains a radio buttons widget.

The available values are filled using a javascript expression retrieving all the groups the user belongs to :

function getGroupNames(data) {
var noms = [];
for( var i = 0; i < data.length; i++ ) {
noms[i] = data[i].group_id.name;
}
return noms;
}

return getGroupNames( $data.listeGroupes );

The selected value is a string variable.

Radio Buttons

Hi
How can I use a radio button's value (which has just two distinct values true and false) in a boolean variable?
I have defined a business variable e.g "testVar" which has a boolean field say "bb".
How can I bind test.bb to radioButton.value and return "testVar" as the formOutput?
Thanks in advance

Notifications