You use the vco:IncludeWorkflowHeader component with the vco:WebformContainer to display a Web form in a Web view.

You can insert a Web form in a Web view to request information from the user when they start a workflow, or to prompt the user for information during the workflow run.

The vco:IncludeWorkflowHeader component defines the following property.

Name

Type

Description

debug

Boolean

Set the Dojo debugging mode

You insert the vco:IncludeWorkflowHeader component in the <head> tags of a Web view page. You insert the associated vco:WebformContainer component in the <body> tags of the Web view page.

The following example shows how to use the vco:IncludeWorkflowHeader component in a Web view.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> 

<head>
	<meta http-equiv="content-type" content="text/html; charset=UTF-8" /> 
	<span jwcid="@vco:IncludeWorkflowHeader"/> 
</head> 

<body jwcid="@Body"> 
	<span jwcid="@WebformContainer"/>
</body> </html>