When I defined PullToRefreshCommand in the xaml, It does nothing for me
<sfgrid:SfDataGrid ScrollingMode="Pixel" x:Name="grid" AllowPullToRefresh="True"
PullToRefreshCommand="ExecutePullToRefreshCommand"
I just into the constructor of my page as below and it works. Is it a bug or I do something wrong?
grid.AllowPullToRefresh = true;
grid.PullToRefreshCommand = new Command(ExecutePullToRefreshCommand);