ASPxClientPopupControl.PerformWindowCallback(window, parameter) Method
In This Article
Sends a callback with parameters to update the popup window by processing the related popup window and the passed information on the server.
#Declaration
TypeScript
PerformWindowCallback(
window: ASPxClientPopupWindow,
parameter: string,
onSuccess?: (arg: string) => void
): void
#Parameters
Name | Type | Description |
---|---|---|
window | ASPx |
A ASPx |
parameter | string | A string value that represents any information that needs to be sent to the server-side ASPx |
on |
(arg: string) => void | A client action to perform if the server round-trip completed successfully. |
#Remarks
Use the PerformWindowCallback method if you need to dynamically update the PopupControl by asynchronously going to the server (using AJAX-based callback technology). With the PerformWindowCallback method’s parameter parameter, you can pass any information collected on the client to the server for further server processing.
See Also