MVCxClientQueryBuilder.PerformCallback(arg) Method
Sends a callback to the server and generates the server-side event passing it the specified argument.
Declaration
PerformCallback(
arg: any
): void
Parameters
Name | Type | Description |
---|---|---|
arg | any | A string value that represents any information that needs to be sent to the server-side event. |
Remarks
Use the PerformCallback method if you need to asynchronously go to the server and perform server-side processing using AJAX-based callback technology. You can pass the required information which can be collected on the client side as a string of arguments using the PerformCallback method args parameter.
See Also