Back to Devexpress

ASPxClientCardView.PerformCallback(args) Method

aspnet-js-aspxclientcardview-dot-performcallback-x28-args-x29.md

latest1.2 KB
Original Source

ASPxClientCardView.PerformCallback(args) Method

Sends a callback to the server and generates the server-side event, passing the specified argument to it.

Declaration

ts
PerformCallback(
    args: string,
    onSuccess?: (arg: string) => void
): void

Parameters

NameTypeDescription
argsstring

A string value that represents any information that needs to be sent to the server-side event.

| | onSuccess | (arg: string) => void |

A client action to perform if the server round-trip completed successfully.

|

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. The onSuccess parameter allows you to specify a client function that should be executed after the server round-trip completed successfully.

See Also

Callbacks

ASPxClientCardView Class

ASPxClientCardView Members