tablevalues.html

This HTML file sets up the tabs that are displayed when a workflow participant clicks the Table Values tab in the work package of an executing workflow. This HTML page sets up the Project and Customer pages.

;;webscript tablevalues( Assoc a )
<!-- File: tablevalues.html -->
;Assoc tabInfo = a.TabInfo
;Assoc paneInfo = tabInfo.PaneList[ a.Tab ]
;String thisURL = $WebDSP.HTMLPkg.ArgsToURL( .fArgs )
<INPUT TYPE="HIDDEN" NAME="custPaneIndex" VALUE="1">
<SCRIPT LANGUAGE="JavaScript">
<!--
function SubmitMyPage()
{if ( document.myForm.xAction != null )
{document.myForm.xAction.value = 'Update';}
document.myForm.NextURL.value = "`%LthisURL`";
document.myForm.paneIndex.value = '`.fArgs.PaneIndex`';
document.myForm.custPaneIndex.value =
'`.fArgs.custPaneIndex`';
document.myForm.submit();}
%// -->
</SCRIPT>
;paneInfo.IsEditable = a.IsEditable
;;call <.HTMLPrefix() + 'tabber.html'>( 1, '#666666',
tabInfo.TabList, Undefined, 'istedirty' )
;;call <.ModHTMLPrefix( a.ModuleName ) + paneInfo.HTMLFile>(
paneInfo )
;;call <.HTMLPrefix() + 'tabber.html'>( 0, '#666666' )
;;end