taskWizardPage1.xslt 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: HTS
  5. (C) Copyright IBM Corp. 2005, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  9. <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
  10. <!-- vars - rather than pass into the template, make global for now -->
  11. <xsl:variable name="assigneeTextInput" select="/root/state/param[@name='assigneeTextInput']"/>
  12. <xsl:variable name="taskTitleInput" select="/root/state/param[@name='taskTitleInput']"/>
  13. <xsl:template name="page1">
  14. <!-- use this to uniquely identify fragments-->
  15. <div id="_THIS_divPage">
  16. <table border="0" cellpadding="0" cellspacing="0">
  17. <tr>
  18. <td>
  19. <img height="10" width="1" src="/cognos8/ps/images/space.gif"/>
  20. </td>
  21. </tr>
  22. </table>
  23. <table border="0" width="100%" cellspacing="0" cellpadding="0" class="cogstyle-usv-taskwizard-table">
  24. <tr>
  25. <td class="dialogHeaderText" align="left">
  26. Specify the assignees, creator and contents of the task. To add recipients, click Select the recipients.
  27. </td>
  28. </tr>
  29. </table>
  30. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  31. <tr>
  32. <td height="10" width="100%">
  33. <img height="10" width="1" src="/cognos8/ps/images/space.gif"/>
  34. </td>
  35. </tr>
  36. </table>
  37. <table border="0" cellspacing="0" cellpadding="3" width="100%">
  38. <tr>
  39. <td width="100%">
  40. <table border="0" cellspacing="0" cellpadding="1">
  41. <tr>
  42. <td class="formLabel" nowrap="nowrap">
  43. Assignee(s):
  44. </td>
  45. </tr>
  46. <tr>
  47. <td class="formText">
  48. <input type="text" size="30" name="assigneeTextInput" class="pInput" maxlength="256" value="{$assigneeTextInput}"/>
  49. <!--<input type="text" size="30" name="assigneeTextInput" class="pInput" maxlength="256" onkeydown="javascript:setGlobalKeyDownHandler(event);" onfocusout="javascript:_THIS_caf_m_p_defaultname(this);" value=""/>-->
  50. </td>
  51. </tr>
  52. <tr align="right" class="formLink">
  53. <td nowrap="nowrap" align="right">
  54. <a href="#" onclick="alert('not implemented yet')" onmouseover="window.status='';return true;" onmouseout="window.status='';return true;">Add...</a>
  55. </td>
  56. </tr>
  57. <tr>
  58. <td nowrap="nowrap">
  59. <img height="5" width="1" src="/cognos8/ps/images/space.gif"/>
  60. </td>
  61. </tr>
  62. </table>
  63. </td>
  64. </tr>
  65. </table>
  66. <table border="0" cellspacing="0" cellpadding="3" width="100%">
  67. <tr>
  68. <td width="100%">
  69. <table border="0" cellspacing="0" cellpadding="1">
  70. <tr>
  71. <td class="formLabel" nowrap="nowrap">
  72. Task Title:
  73. </td>
  74. </tr>
  75. <tr>
  76. <td class="formText">
  77. <input type="text" size="30" name="taskTitleInput" class="pInput" maxlength="256" value="{$taskTitleInput}"/>
  78. </td>
  79. </tr>
  80. <tr>
  81. <td nowrap="nowrap">
  82. <img height="5" width="1" src="/cognos8/ps/images/space.gif"/>
  83. </td>
  84. </tr>
  85. </table>
  86. </td>
  87. </tr>
  88. </table>
  89. </div>
  90. </xsl:template>
  91. </xsl:stylesheet>