Skip to main content
A newer version of this page is available.
All docs
V18.2

QueryBuilderExtension.GetSaveCallbackResult(String, Boolean) Method

Returns the result of a callback sent to the server for saving a query.

Namespace: DevExpress.Web.Mvc

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

Declaration

public static QueryBuilderSaveCallbackResult GetSaveCallbackResult(
    string name,
    bool validateQueryByExecution
)

Parameters

Name Type Description
name String

A string that specified the Query Builder name.

validateQueryByExecution Boolean

true, to validate a query on execution; otherwise, false.

Returns

Type Description
QueryBuilderSaveCallbackResult

A QueryBuilderSaveCallbackResult object.

Remarks

Use the GetSaveCallbackResult method in a controller action specified by the QueryBuilderSettings.SaveCallbackRouteValues property to obtain the callback result.

See the Saving Queries topic for more information on using this method.

See Also