BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
hi, thanks for replying syncfusion!
I have already deserialized my data however keep getting error after error when trying to use the sfdatagrid with my json data and its getting quite frustrating. I am pretty new to xamarin so maybe thats why. But ive had a look at your documentation regarding but it shows local, and im not sure i quite understand the json sln you sent me. If possible could you guys try and get one going atleast start it off for me. Thanks
Here is the data im trying to collect and populate onto the sfdata grid just using the feeds
public class RootObject
{
public List<Feed> Feeds { get; set; }
}
public class Channel
{
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Latitude { get; set; }
public string Longitude { get; set; }
public string Field1 { get; set; }
public DateTime Created_at { get; set; }
public DateTime Updated_at { get; set; }
public string Elevation { get; set; }
public int Last_entry_id { get; set; }
}
public class Feed
{
public DateTime Created_at { get; set; }
public int Entry_id { get; set; }
public string Field1 { get; set; }
}
public partial class DripPage : TabbedPage
{
void Handle_Refreshing(object sender, System.EventArgs e)
{
postsListView.ItemsSource = _data;
postsListView.EndRefresh();
}
private const string Url = "https://thingspeak.com/channels/301726/field/1.json";
private HttpClient _client = new HttpClient();
private ObservableCollection<Feed> _data;
public DripPage()
{
InitializeComponent();
}
protected override async void OnAppearing()
{
var content = await _client.GetStringAsync(Url);
var data = JsonConvert.DeserializeObject<RootObject>(content);
_data = new ObservableCollection<Feed>(data.Feeds);
postsListView.ItemsSource = _data;
base.OnAppearing();
}
void OnAdd(object sender, System.EventArgs e)
{
}
void OnUpdate(object sender, System.EventArgs e)
{
}
void OnDelete(object sender, System.EventArgs e)
{
}
}
}
public ObservableCollection<DynamicModel> DynamicCollection { get; set; } DynamicJsonCollection = JsonConvert.DeserializeObject<List<Dictionary<string, object>>>(JsonData); |
public ObservableCollection<DynamicModel> DynamicCollection { get; set; } DynamicCollection = PopulateData();
private ObservableCollection<DynamicModel> PopulateData()
{
var data = new ObservableCollection<DynamicModel>();
foreach (var item in DynamicJsonCollection)
{
var obj = new DynamicModel() { Values = item };
data.Add(obj);
}
return data;
}
|
grid.ItemsSource = viewModel.DynamicCollection;
grid.Columns.Add(new GridTextColumn()
{
HeaderText = "Order ID",
MappingName = "Values[OrderID]",
});
|