serverConfigPageMarkup.htm 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <!--
  2. IBM Confidential
  3. OCO Source Materials
  4. BI and PM: Mobile
  5. (C) Copyright IBM Corp. 2013, 2014
  6. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  7. -->
  8. <div id="_THIS_idFragmentContainer">
  9. <script type="text/javascript">
  10. // CPS Fragment Producer Client Object
  11. dojo.require('mobileAdmin.serverConfig.producer.CPSProducerClient');
  12. var producerClient = new mobileAdmin.serverConfig.producer.CPSProducerClient(_THIS_);
  13. // Mobile Administration: Server Configuration Client Application
  14. dojo.require('mobileAdmin.serverConfig.MobileServerConfigApplication');
  15. var mobServerConfigApp = new mobileAdmin.serverConfig.MobileServerConfigApplication( _THIS_, MOB, producerClient);
  16. _THIS_.G_App = mobServerConfigApp;
  17. // Fragment Event CallBack Methods
  18. _THIS_.Fragment_Load_CallBack = function() {
  19. _THIS_.G_App.initialize();
  20. }
  21. _THIS_.Fragment_Refresh_CallBack = function() {
  22. _THIS_.G_App.dispose();
  23. }
  24. // Fragment event listeners
  25. _THIS_.addEventListener('fragment.load', _THIS_.Fragment_Load_CallBack, false);
  26. _THIS_.addEventListener('fragment.refresh', _THIS_.Fragment_Refresh_CallBack, false);
  27. </script>
  28. <!-- Fragment title bar -->
  29. <table class="cogstyle-portlet-caption-bar" width="100%" border="0" cellspacing="0" cellpadding="0" role='presentation'>
  30. <tbody>
  31. <tr>
  32. <td class="cogstyle-portlet-caption" width="100%" valign="top">
  33. <span>
  34. <div id="caption_bar_title" role="heading"></div>
  35. </span>
  36. </tr>
  37. </tbody>
  38. </table>
  39. <!-- Mobile Administration: Server Configuration Client UI -->
  40. <div class="appUIContainer mobileServerAppUIContainer" id="idAppUIContainer" >
  41. </div>
  42. <!-- Fragment bottom button bar -->
  43. <table class='cogstyle-dialog-commandbar' width='100%' border='0' cellspacing='0' cellpadding='0' role='presentation'>
  44. <tbody>
  45. <tr>
  46. <td valign='middle' align='right'>
  47. <table border='0' cellspacing='0' cellpadding='0' role='presentation'>
  48. <tbody>
  49. <tr>
  50. <td>
  51. <table class='cogstyle-dialog-button'
  52. width='73'
  53. height='18'
  54. border='0'
  55. cellspacing='0'
  56. cellpadding='0'
  57. role='presentation'
  58. onmouseout="this.className = 'cogstyle-dialog-button'">
  59. <tbody>
  60. <tr>
  61. <td id='btnSave' style='white-space: nowrap' align='center' onclick='javascript:_THIS_.G_App.saveConfiguration()' onkeypress='javascript:if(event.keyCode == 13){_THIS_.G_App.saveConfiguration()}' tabindex='0' role='button'>
  62. <div id='save_button_title'></div>
  63. </td>
  64. </tr>
  65. </tbody>
  66. </table>
  67. </td>
  68. </tr>
  69. </tbody>
  70. </table>
  71. </td>
  72. <td width='100%' valign='middle'>
  73. </td>
  74. </tr>
  75. </tbody>
  76. </table>
  77. <!-- Hidden form -->
  78. <form id="idAppForm" method="GET" action="_THIS?/THIS_">
  79. </form>
  80. </div>