<uiActivity>
Element | Description | Namespace | Number |
---|---|---|---|
script | Contains the Javascript | http://onion.net/modulesystem/workflow | 1 |
Attribute | Description | Namespace | Optional |
---|---|---|---|
id | Id of the activity | No | |
result:success | Next activity, if the current activity has been successfully executed | http://onion.net/workflow/activityresult | Yes |
result:error | Next activity, if the current activity has not been successfully executed | http://onion.net/workflow/activityresult | Yes |
result:* | Any attribute which points to an activity that can be called after the current activity | http://onion.net/workflow/activityresult | Yes |
<uiActivity id="client" result:success="prepare">
<script>
alert('test');
</script>
</uiActivity>