This question is locked. New answers and comments are not allowed.
If I have a object of the following:
Name and Description are simple values but Data is a json string which can have X amount of columns. For example:
{ "some column name" : "some column data", "some column name" : "some column data" }
So an example of the object could be:
Name: Insurance
Description: Insurance Information
Data: { "type" : "none", "co-pay": "20", "exceptions" : "1,2,3" }
I was wondering if telerik can accept this Data object and be able to create the necessary columns and list the values with the proper columns. So the resulting sortable telerik grid would be:
Name | Description | Type | Co-Pay | Exceptions |
Insurance| Insu Info| none | 20 | 1,2,3
If I can't use json, then is there something else that Telerik would accept?
public class FormResult { public string Name { get; set; } public string Description { get; set; } public string Data { get; set; }}Name and Description are simple values but Data is a json string which can have X amount of columns. For example:
{ "some column name" : "some column data", "some column name" : "some column data" }
So an example of the object could be:
Name: Insurance
Description: Insurance Information
Data: { "type" : "none", "co-pay": "20", "exceptions" : "1,2,3" }
I was wondering if telerik can accept this Data object and be able to create the necessary columns and list the values with the proper columns. So the resulting sortable telerik grid would be:
Name | Description | Type | Co-Pay | Exceptions |
Insurance| Insu Info| none | 20 | 1,2,3
If I can't use json, then is there something else that Telerik would accept?