12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <!--
- IBM Confidential
- OCO Source Materials
- BI and PM: Mobile
- (C) Copyright IBM Corp. 2013, 2014
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <div id="_THIS_idFragmentContainer">
- <script type="text/javascript">
- // CPS Fragment Producer Client Object
- dojo.require('mobileAdmin.serverConfig.producer.CPSProducerClient');
- var producerClient = new mobileAdmin.serverConfig.producer.CPSProducerClient(_THIS_);
-
- // Mobile Administration: Server Configuration Client Application
- dojo.require('mobileAdmin.serverConfig.MobileServerConfigApplication');
- var mobServerConfigApp = new mobileAdmin.serverConfig.MobileServerConfigApplication( _THIS_, MOB, producerClient);
- _THIS_.G_App = mobServerConfigApp;
-
- // Fragment Event CallBack Methods
- _THIS_.Fragment_Load_CallBack = function() {
- _THIS_.G_App.initialize();
- }
-
- _THIS_.Fragment_Refresh_CallBack = function() {
- _THIS_.G_App.dispose();
- }
-
- // Fragment event listeners
- _THIS_.addEventListener('fragment.load', _THIS_.Fragment_Load_CallBack, false);
- _THIS_.addEventListener('fragment.refresh', _THIS_.Fragment_Refresh_CallBack, false);
- </script>
-
- <!-- Fragment title bar -->
- <table class="cogstyle-portlet-caption-bar" width="100%" border="0" cellspacing="0" cellpadding="0" role='presentation'>
- <tbody>
- <tr>
- <td class="cogstyle-portlet-caption" width="100%" valign="top">
- <span>
- <div id="caption_bar_title" role="heading"></div>
- </span>
- </tr>
- </tbody>
- </table>
-
-
-
- <!-- Mobile Administration: Server Configuration Client UI -->
- <div class="appUIContainer mobileServerAppUIContainer" id="idAppUIContainer" >
- </div>
-
- <!-- Fragment bottom button bar -->
- <table class='cogstyle-dialog-commandbar' width='100%' border='0' cellspacing='0' cellpadding='0' role='presentation'>
- <tbody>
- <tr>
- <td valign='middle' align='right'>
- <table border='0' cellspacing='0' cellpadding='0' role='presentation'>
- <tbody>
- <tr>
- <td>
- <table class='cogstyle-dialog-button'
- width='73'
- height='18'
- border='0'
- cellspacing='0'
- cellpadding='0'
- role='presentation'
- onmouseout="this.className = 'cogstyle-dialog-button'">
- <tbody>
- <tr>
- <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'>
- <div id='save_button_title'></div>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- <td width='100%' valign='middle'>
- </td>
- </tr>
- </tbody>
- </table>
-
- <!-- Hidden form -->
- <form id="idAppForm" method="GET" action="_THIS?/THIS_">
- </form>
-
- </div>
|