Skip to main content

GridControl.PullToRefreshCommand Property

Gets or sets the command executed when an end-user pulls the grid down to refresh data. This is a bindable property.

Namespace: DevExpress.Mobile.DataGrid

Assembly: DevExpress.Mobile.Grid.v18.2.dll

#Declaration

public ICommand PullToRefreshCommand { get; set; }

#Property Value

Type Description
ICommand

A command that exposes the ICommand interface.

#Remarks

Important

This documentation topic describes legacy technology. We no longer develop new functionality for the GridControl and suggest that you use the new DataGridView control instead.

The GridControl‘s pull-to-refresh feature allows end-users to request a grid content update with the pull-down gesture.

PullToRefresh_iOS

To enable this functionality, set the GridControl.IsPullToRefreshEnabled property to true. Then, either define a refresh command in a view model and bind it to the grid using the PullToRefreshCommand property, or handle the GridControl.PullToRefresh event.

#Example

This example shows how to add the pull-to-refresh functionality to a grid to allow your end-users update grid content with the pull-down gesture. To do this, follow the steps below.

  1. Set the GridControl.IsPullToRefreshEnabled property to true to enable the grid’s pull-to-refresh feature.
  2. Create a command to be executed when an end-user pulls the grid down.
  3. Bind the created command to the grid using the GridControl.PullToRefreshCommand property.

GridControl_PullToRefresh

See Also