Hello There;
I am trying to load the Flexigrid by using a JSON String which is returned by a WCF Service.
my Service has a public string GetContacts(string CustomerID) method and it returns a Json string. that json string is created from a List object by using System.Web.Script.Serialization.JavaScriptSerializer class. So, my aim is that I would like to bind JSON string to the my flexigrid as objects. I convert the web service result to objects using
var customer = eval("(" + result + ")"); // result is the JSOn string being returned from service.
SO is there any way to bind customer objects to Flexigrid?
I hope it is clear.
Thanks all of you in advance.
Besr Regards.