Skip to main content
A newer version of this page is available. .

MVCxGridViewProperties.BeforeGetCallbackResult Property

Enables you to perform custom processing after a callback sent by the GridView has been processed on the server, but prior to the time the respective callback result render is formed.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc5.v18.2.dll

Declaration

public EventHandler BeforeGetCallbackResult { get; set; }

Property Value

Type Description
EventHandler

A EventHandler delegate method allowing you to implement custom processing.

Remarks

Implement a EventHandler delegate method and assign it to the BeforeGetCallbackResult property. For more implementation details, refer to the EventHandler delegate description.

See Also