XOAD HTML Class file.
This file defines the XOAD_HTML Class.
Example:
- <?php
- class Update
- {
- function ui()
- {
- sleep(1);
- $content =& XOAD_HTML::getElementById('content');
- $content->innerHTML = 'Hello World! How are you?';
- }
- }
- define('XOAD_AUTOHANDLE', true);
- require_once('xoad.php');
- ?>
- <?= XOAD_Utilities::header('.') ?>
- <div id="content">Hello!</div>
- <script type="text/javascript">
- var obj = <?= XOAD_Client::register(new Update()) ?>;
- obj.ui(xoad.asyncCall);
- </script>
Class | Description |
---|---|
![]() |
XOAD HTML Class. |
Defines the string that is replaced with the current value of the field.
Example:
- <?php
- class Update
- {
- function ui()
- {
- sleep(1);
- $content =& XOAD_HTML::getElementById('content');
- $content->innerHTML = XOAD_HTML_CURRENT_VALUE . ' How are you?';
- }
- }
- define('XOAD_AUTOHANDLE', true);
- require_once('xoad.php');
- ?>
- <?= XOAD_Utilities::header('.') ?>
- <div id="content">Hello!</div>
- <script type="text/javascript">
- var obj = <?= XOAD_Client::register(new Update()) ?>;
- obj.ui(xoad.asyncCall);
- </script>
Documentation generated on Sat, 12 Nov 2005 20:24:11 +0200 by phpDocumentor 1.3.0RC3