ASPxClientScheduler.EndCallback Event
Occurs on the client side after a callback’s server-side processing has been completed.
Declaration
EndCallback: ASPxClientEvent<ASPxClientEndCallbackEventHandler<ASPxClientScheduler>>
Event Data
The EndCallback event's data class is ASPxClientEndCallbackEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
command | Gets a command name that identifies which client action forced a callback to occur. |
Remarks
The ASPxClientScheduler.BeginCallback and EndCallback events can be used to perform specific client-side actions while a callback is being processed on the server side.
<dx:ASPxScheduler >
<ClientSideEvents EndCallback="function(s, e) {
// your code
} />
...
</dx:ASPxScheduler>
<dx:ASPxScheduler ID="ASPxScheduler1" runat="server" ClientInstanceName="scheduler">
</dx:ASPxScheduler>
See Also