Pas d'affichage

Bonjour,

je cherche à utiliser le sfpulltorefresh mais impossible. Je n'ai aucun rendu sur android.
J'utilise la version 17.4.0.55. D'ailleurs je n'arrive pas a faire fonctionner l'exemple donné sur le site.

Lorsque je glisse un datagrid dans le pull to refresh, il m'affiche une page blanche que je ne peux pas rafraichir.
Auriez vous une solution?

Merci d'avance.

Stéphane.

1 Reply

SS Sivaraman Sivagurunathan Syncfusion Team March 31, 2020 12:45 PM UTC

Hi Bonjour, 

Thanks for using Syncfusion controls. 

We have checked the reported issue, but we are unable to reproduce the issue from our side. We have attached the sample we tested and attached the code snippet for your reference. You can download the same from the below link. 


<syncfusion:SfPullToRefresh x:Name="pullToRefresh" 
                        IsRefreshing="False"  
                        PullingThreshold="100" 
                        RefreshContentHeight="30" 
                        RefreshContentThreshold="30" 
                        RefreshContentWidth="30"> 
    <syncfusion:SfPullToRefresh.PullableContent> 
        <sfgrid:SfDataGrid x:Name="dataGrid" 
                ItemsSource="{Binding OrdersInfo}"  
                AutoGenerateColumns="False" 
                ColumnSizer="Star"> 
            <sfgrid:SfDataGrid.Columns > 
                <sfgrid:GridTextColumn MappingName="FirstName"  /> 
                <sfgrid:GridTextColumn MappingName="LastName"  /> 
                <sfgrid:GridTextColumn MappingName="FirstName" /> 
            </sfgrid:SfDataGrid.Columns> 
        </sfgrid:SfDataGrid> 
    </syncfusion:SfPullToRefresh.PullableContent> 
</syncfusion:SfPullToRefresh> 

public MainPage() 
{ 
    InitializeComponent(); 
    pullToRefresh.Refreshing += PullToRefresh_Refreshing; 
 
} 
 
private async void PullToRefresh_Refreshing(object sender, EventArgs e) 
{ 
    pullToRefresh.IsRefreshing = true; 
    await Task.Delay(2000); 
    this.viewModel.ItemsSourceRefresh(); 
    pullToRefresh.IsRefreshing = false; 
} 


In case, if you are able to reproduce the issue at your side, then please revert us with a modified sample reproducing the issue along with clear replication procedure to proceed further.  

Regards, 
S.Sivaraman 


Loader.
Up arrow icon