I | |
includeCSS, xajaxResponse | |
includeOnce, xajax.js | |
includeScript | |
includeScriptOnce, xajaxResponse | |
Index of available test scripts | |
index.php | |
initializeRequest | |
insert | |
insertAfter | |
insertInput | |
insertInputAfter | |
isClass, xajaxCallableObject | |
isLoaded | |
isRegistered, xajax. | |
isValid, graffiti | |
J | |
Javascript loading test | |
jsLoadingTest.php | |
L | |
Legacy mode test index | |
License | |
loadCommands, xajaxResponse | |
loadPlugins, xajaxPluginManager | |
M | |
makeFunction, xajax. | |
makeWrapper, xajax.js | |
MAX_SCRIBBLES | |
maxObjectDepth, xajax. | |
maxObjectSize, xajax. | |
mCallback, xajax | |
misc. | |
miseājour | |
Multi-page Sign-up Example | |
Multiplication Example | |
multiply. | |
multiply.php | |
multiply. | |
N | |
nMethod, xajaxArgumentManager | |
O | |
obj, xajaxCallableObject | |
objArgumentManager, xajax | |
objLanguageManager, xajax | |
objPluginManager | |
objResponse | |
objResponseManager, xajax | |
Online documentation |
Response command used to include a LINK reference to the specified CSS file on the browser.
function includeCSS( $sFileName, $sMedia = null )
Adds a SCRIPT tag referencing the specified file.
xajax.js.includeScript = function( command )
Response command used to load a javascript file on the browser.
function includeScript( $sFileName, $sType = null, $sId = null )
Response command used to include a javascript file on the browser if it has not already been loaded.
function includeScriptOnce( $sFileName, $sType = null, $sId = null )
Initialize a request object, populating default settings, where call specific settings are not already provided.
xajax.initializeRequest = function( oRequest )
Generate a message indicating that the request object is being initialized.
xajax.debug.initializeRequest = xajax.initializeRequest; xajax.initializeRequest = function( oRequest )
Insert a new element before the specified element.
xajax.dom.insert = function( objSibling, sTag, sId )
Response command used to insert a new element just prior to the specified element.
function insert( $sBefore, $sTag, $sId )
Insert a new element after the specified element.
xajax.dom.insertAfter = function( objSibling, sTag, sId )
Response command used to insert a new element after the specified one.
function insertAfter( $sAfter, $sTag, $sId )
Insert a new input element before the specified element.
xajax.forms.insertInput = function( command )
Response command used to insert a new input element preceeding the specified element.
function insertInput( $sBefore, $sType, $sName, $sId )
Insert a new input element after the specified element.
xajax.forms.insertInputAfter = function( command )
Response command used to insert a new input element after the specified element.
function insertInputAfter( $sAfter, $sType, $sName, $sId )
Determins if the specified class name matches the class name of the object referenced by xajaxCallableObject->obj.
function isClass( $sClass )
xajax.isLoaded
xajax.debug.isLoaded
xajax.debug.verbose.isLoaded
xajax.legacy.isLoaded
Returns true or false depending on whether a command handler has been created for the specified command (object).
xajax.command.handler.isRegistered = function( command )
Indicates that the html generated for this request is valid and can be added to the wall DATA_FILE.
var $isValid
Merges the response commands from the specified xajaxResponse object with the response commands in this xajaxResponse object.
function loadCommands( $mCommands, $bBefore = false )
Loads plugins from the folders specified.
function loadPlugins( $aFolders )
Generate a wrapper function around the specified function.
xajax.debug.verbose.makeFunction = function( obj, name )
Helper function used in the wrapping of an existing javascript function.
xajax.js.makeWrapper = function( origFun, args, codeBlocks, returnVariable, context )
The maximum depth of recursion allowed when serializing objects to be sent to the server in a request.
xajax.config.setDefault( 'maxObjectDepth', 20 )
The maximum number of members allowed when serializing objects to be sent to the server in a request.
xajax.config.setDefault( 'maxObjectSize', 2000 )
Stores the method that was used to send the arguments from the client.
var $nMethod
A reference to the callable object.
var $obj
Stores a reference to the global xajaxArgumentManager
var $objArgumentManager
Stores a reference to the global xajaxLanguageManager
var $objLanguageManager
This stores a reference to the global xajaxPluginManager
var $objPluginManager
A reference to the global plugin manager.
var $objPluginManager
The current response object that will be sent back to the browser once the request processing phase is complete.
var $objResponse
A reference to the current xajaxResponse object that is being used to build the response that will be sent to the client browser.
var $objResponse
Stores a reference to the global xajaxResponseManager
var $objResponseManager