|
|
|
|
|
AJAXAsynchronousCallPending (Function) In french: AJAXAppelAsynchroneEnCours
IF AJAXAvailable() = True THEN
Res is int
Res = AJAXExecuteAsynchronous(MaProc, ProcRésultat)
...
IF AJAXAsynchronousCallPending(Res) = True THEN
AJAXCancelAsynchronousCall(Res)
END
ELSE
...
END
Syntax
<Result> = AJAXAsynchronousCallPending(<Identifier of server procedure>)
<Result>: Boolean - True if the specified server procedure is currently run,
- False otherwise.
<Identifier of server procedure>: Integer Identifier of the server procedure to use. This identifier was defined by AJAXExecuteAsynchronous. Remarks Older browsers AJAXAvailable is used to determine if the current browser supports AJAX technology. If a process that uses AJAX is run on a browser that does not support this technology, the process is run "as if" it did not use AJAX (e.g., the entire page is refreshed).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|