hi i trying to load data from WCF web service and return to datatable
trying to load to grid using below code
RelativeLayout layout = (RelativeLayout)FindViewById(Resource.Id.Relative);
sfGrid = new SfDataGrid(BaseContext);
sfGrid.ItemsSource = usrSvr.GetFireArmList(ProcessID).FireArmListTable;
sfGrid.AllowSorting = true;
//sfGrid.GroupColumnDescriptions.Add(new GroupColumnDescription() { ColumnName = "ShipCountry" });
//sfGrid.AutoGeneratingColumn += HandleAutoGeneratingColumn;
sfGrid.AutoGenerateColumns = true;
layout.AddView(sfGrid);
but failed to load
is anything i need to do
hope can hear you soon
thank you