Hi,
I have this error : 'System.TypeLoadException : Could not load type 'Syncfusion.SfDataGrid.XForms.Droid.PullToRefreshViewRenderer' from assembly 'Syncfusion.SfDatagrid.XForms.Android, version 14.2451.0.32'
I use Syncfusion 14.2451.0.32, i have Syncfusion.SfDatagrid.Android ; Syncfusion.SfDatagrid.XForms ; Syncfusion.SfDatagrid.XForms.Android ; Syncfusion.Data.Portable and Syncfusion.GridCommon.Portable in my .droid project
And Syncfusion.Data.portable, Syncfusion.SfDatagrid.Xforms, Syncfusion.GridCommon.Portable in my project.
I use Xamarin 2.3.2.127.
My project work perfectly in iOS, but not in Android, so i think it's a assembly error.
When i debug (.droid), my datagrid is not null or empty, it had the same value that the iOS.
I need to use a specific version of Xamarin ? Xamarin.Android ? I have the good packages ?
Code :
//Construc the datagrid ...
//Then
dataGrid.AllowPullToRefresh = true;
dataGrid.PullToRefreshCommand = new Command (ExecutePullToRefreshCommand);
async void ExecutePullToRefreshCommand ()
{
//My command refresh the grid
}
Thank's :)