Skip to main content

constructor(processOnServer, cancelEventAndBubble) Constructor

Initializes a new instance of the ASPxClientButtonClickEventArgs class with the specified settings.

Declaration

constructor(
    processOnServer: boolean,
    cancelEventAndBubble: boolean
)

Parameters

Name Type Description
processOnServer boolean

true to process the event on the server side; false to handle it completely on the client side. Initializes the ASPxClientProcessingModeEventArgs.processOnServer property.

cancelEventAndBubble boolean

true to cancel both the event’s default action and the event’s bubbling upon the hierarchy of event handlers; otherwise, false. Initializes the ASPxClientButtonClickEventArgs.cancelEventAndBubble property.

See Also