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

GridViewExtension.GetCustomDataCallbackResult(Object) Method

Returns the specified result back to the client side after processing a callback within an Action defined GridSettingsBase.CustomDataActionRouteValues property.

Namespace: DevExpress.Web.Mvc

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

Declaration

public static ContentResult GetCustomDataCallbackResult(
    object data
)

Parameters

Name Type Description
data Object

An object that represents any information that needs to be passed back to the client side.

Returns

Type Description
ContentResult

A ContentResult object representing the result of an action method.

Remarks

Use this method in an Action specified by the GridSettingsBase.CustomDataActionRouteValues property to return the result of callback processing back to the client.

See Also