I want to bind for example cars to one table and houses to another table. In screenshot A, I am trying to bind a table column to an array of models in the cars object, but the telerik support designer doesn't allow me to see the models and select it. All is shows that its a system.Object. Am I doing something wrong? I am using a json data source like this (I am aware that the json is in single quotes, that's not a problem. I have using json data with double quotes and still the same problem):
JsonDataSource:
{
'name': 'john',
'age': 146,
'cars': [{
'model': 'Ford89',
'price': 50
},{
'model': 'BMW',
'price': 42
}],
'houses': [{
'location': 'los angelos',
'cost': 505
},{
'location': 'sunny town',
'cost': 505
}]
}
JsonDataSource:
{
'name': 'john',
'age': 146,
'cars': [{
'model': 'Ford89',
'price': 50
},{
'model': 'BMW',
'price': 42
}],
'houses': [{
'location': 'los angelos',
'cost': 505
},{
'location': 'sunny town',
'cost': 505
}]
}