Versions Compared

Key

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

...

For a action you can configure following:;

Name (Not visible in diagram)
Name of action. Name information are not visible to users and used to identify task.

Caption
Caption of action. Captions are shown to users and can be localized when needed. 

 

Image Added

 

Is Hidden ?
Check this field to hide action from users. Hiding an action may be useful for temporary disabling action or selecting as deadline action to escalate task.

Follow Action
Check this field to follow action result. Following action result checks the next step in workflow is assigned to same user, if same user assigned automatically opens the next task without redirecting to user work list.

 

Image Added

 

Validation Group
Name of validation rule groups. Use semicolon ";" to specify multiple groups. If any rule in this group fails action cannot be selected.

 

Image Added

 

Require Comment ?
Check this field to request mandatory comment from user. In some cases like rejecting a form, you can force the user for specifying a reject reason.

Order
A number value used for ordering actions within other actions. Higher values put action to last.

Validation Group
Name of validation rule groups. Use semicolon ";" to specify multiple groups. If any rule in this group fails action cannot be selected.

Follow Action
Check this field to follow action result. Following action result checks the next step in workflow is assigned to same user, if same user assigned automatically opens the next task without redirecting to user work list. 

Image Added

 

For a action you can configure also following properties to change appearance from context menu: 

Click right mouse button on the action, action design pop-up will open. Click on appearance title, start to change the action properties. 

 

Image Added

Icon
Select icon to show user. 

...

Signing basic plain text and fetching the signature file.

 

Code Block
languagejs
AltiKare.Signature.signText('Hello !', true, 'BES').then(function(result) {
    
	if (result) {
	    // result.certificateName contains the name of signer
    	// result.certificateIssuer contains the issuer of signer certificate
    	// result.certificateSerialNumber contains the serial number of signer
    	// result.files.forEach(function(file) {
            // file.id contains the signature file id.
    	// });
	}
   
    $Complete(!!result);
});

 

 

 

...