Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This JSON comes back from existing server and probably won't be changed - checks out as valid using JSONLint. Autobind does not work on this, and I can't get a grid to work with it:

[
{
    "SearchResult":{
        "assets":[
            {
                "agent":"6.1.0",
                "id":1,
                "model":"Gateway1",
                "modelId":2,
                "name":"Name",
                "serialNumber":"Serial01",
            },
            {
                "agent":"M2M",
                "id":2,
                "model":"Gateway1",
                "modelId":3,
                "name":"Name",
                "serialNumber":"Serial02"
            }
        ],
        "searchCriteria":{
            "paginationEnabled":false,
            "rowsPerPage":-1,
            "startRow":-1,
            "totalAvailableRows":-1,
            "alternateId":{
                "@xsi.nil":"true"
            },
            "modelNumber":{
                "@xsi.nil":"true"
            },
            "name":"*",
            "serialNumber":{
                "@xsi.nil":"true"
            }
        }
    }
}
]
share|improve this question

1 Answer

up vote 4 down vote accepted

You should specify the array with data in the DataSource's schema.

Have in mind that the DataSource works with flat arrays. To display the "assets" try the following:

schema: {
  data: function(rawData) { 
    return rawData[0].SearchResult.assets;
  }
}

Here is a working example: http://jsbin.com/opocib/3/edit

share|improve this answer
Thank you for the prompt answer and JSBin - :) – davidjmcclelland Jan 7 at 1:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.