ASPxClientGlobalBeginCallbackEventArgs.control Property
Gets an object that initiated a callback.
Declaration
control: ASPxClientControl
Property Value
Type | Description |
---|---|
ASPxClientControl | An ASPxClientControl class descendant object that is the control that initiated a callback. |
Example
<dx:ASPxGlobalEvents ID="ASPxGlobalEvents1" runat="server">
<ClientSideEvents
BeginCallback="function(s, e) {
alert('BeginCallback ' + e.control.name);
}" CallbackError="function(s, e) {
alert('CallbackError ' + e.control.name);
}" EndCallback="function(s, e) {
alert('EndCallback ' + e.control.name);
}" />
</dx:ASPxGlobalEvents>
See Also