Building the Task UI
In the previous section, we used an Inline User Task to automatically generate the Task UI based on input and output data mapping. While that is a useful technique to speed up our development, it is also common for business users to demand a more customized experience when working on tasks. To achieve that, we can make use of the built-in UI designer to build a custom task with the Client-Side Human Service (CSHS) and reusable View capabilities. In this part of the tutorial, we will replace the generated UI of Submit New Position Request with a custom UI.
To create this custom UI, we will create two reusable views (QualificationView
and PositionRequestView
) and one CSHS (Submit New Position Request):
Figure 7.31 – Custom UI with Client-Side Human Service and views
Views are reusable UI widgets that can be combined to create a more complex UI. There are close to 100 out-of-the-box views available for reuse. This same technology...