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

GridViewCustomBindingGetDataHandler Delegate

A delegate method that enables you to populate the grid view model with data rows requested by the grid, when implementing custom data binding of the GridView.

Namespace: DevExpress.Web.Mvc

Assembly: DevExpress.Web.Mvc.v17.2.dll

Declaration

public delegate void GridViewCustomBindingGetDataHandler(
    GridViewCustomBindingGetDataArgs e
);

Parameters

Name Type Description
e GridViewCustomBindingGetDataArgs

An GridViewCustomBindingGetDataArgs object that contains the related arguments.

Remarks

Refer to Implementation of Typed Method Delegates to learn more.

See Also