Hi Nigel,
Thanks for sharing the video demo.
We are able to reproduce the reported issue at our end while preparing a sample using your suggestion. From the video we found that you have not displayed the json serialized sting in Grid. then we suggest you to overcome the reported issue by using [JsonIgnore].
Refer the below code example
|
public class Order
{
public int? OrderID { get; set; }
public string CustomerID { get; set; }
public DateTime? OrderDate { get; set; }
public double? Freight { get; set; }
[JsonIgnore]
public string jsonstring { get; set; }
}
|
If above solution does not resolve your query or if have any other queries related to the solution, kindly get back to us with more details.
Regards,
Vignesh Natarajan