12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: HTS
- (C) Copyright IBM Corp. 2005, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
-
- <!-- vars - rather than pass into the template, make global for now -->
- <xsl:variable name="assigneeTextInput" select="/root/state/param[@name='assigneeTextInput']"/>
- <xsl:variable name="taskTitleInput" select="/root/state/param[@name='taskTitleInput']"/>
-
- <xsl:template name="page1">
- <!-- use this to uniquely identify fragments-->
- <div id="_THIS_divPage">
- <table border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td>
- <img height="10" width="1" src="/cognos8/ps/images/space.gif"/>
- </td>
- </tr>
- </table>
- <table border="0" width="100%" cellspacing="0" cellpadding="0" class="cogstyle-usv-taskwizard-table">
- <tr>
- <td class="dialogHeaderText" align="left">
- Specify the assignees, creator and contents of the task. To add recipients, click Select the recipients.
- </td>
- </tr>
- </table>
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td height="10" width="100%">
- <img height="10" width="1" src="/cognos8/ps/images/space.gif"/>
- </td>
- </tr>
- </table>
- <table border="0" cellspacing="0" cellpadding="3" width="100%">
- <tr>
- <td width="100%">
- <table border="0" cellspacing="0" cellpadding="1">
- <tr>
- <td class="formLabel" nowrap="nowrap">
- Assignee(s):
- </td>
- </tr>
- <tr>
- <td class="formText">
- <input type="text" size="30" name="assigneeTextInput" class="pInput" maxlength="256" value="{$assigneeTextInput}"/>
- <!--<input type="text" size="30" name="assigneeTextInput" class="pInput" maxlength="256" onkeydown="javascript:setGlobalKeyDownHandler(event);" onfocusout="javascript:_THIS_caf_m_p_defaultname(this);" value=""/>-->
- </td>
- </tr>
- <tr align="right" class="formLink">
- <td nowrap="nowrap" align="right">
- <a href="#" onclick="alert('not implemented yet')" onmouseover="window.status='';return true;" onmouseout="window.status='';return true;">Add...</a>
- </td>
- </tr>
- <tr>
- <td nowrap="nowrap">
- <img height="5" width="1" src="/cognos8/ps/images/space.gif"/>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- <table border="0" cellspacing="0" cellpadding="3" width="100%">
- <tr>
- <td width="100%">
- <table border="0" cellspacing="0" cellpadding="1">
- <tr>
- <td class="formLabel" nowrap="nowrap">
- Task Title:
- </td>
- </tr>
- <tr>
- <td class="formText">
- <input type="text" size="30" name="taskTitleInput" class="pInput" maxlength="256" value="{$taskTitleInput}"/>
- </td>
- </tr>
- <tr>
- <td nowrap="nowrap">
- <img height="5" width="1" src="/cognos8/ps/images/space.gif"/>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </div>
- </xsl:template>
- </xsl:stylesheet>
|