Skip to main content
A newer version of this page is available. .

ASPxClientCallbackCompleteEventArgs.result Property

Gets a string that contains specific information (if any) that has been passed from the server to the client side for further processing.

Declaration

result: string

Property Value

Type Description
string

A string value representing specific information passed from the server back to the client side.

Example

The complete sample project is available in the DevExpress Code Central database at E36.

function ShowImage(id) {
    if (ASPxCallback1.InCallback()) 
        return;
    document.getElementById('imageCell').innerHTML = 'Loading...';
    ASPxCallback1.PerformCallback(id);
}
See Also