An array is an ordered data structure consisting of a collection of elements. Nested array is collection of array. Use this tag for questions related to nested-array.

learn more… | top users | synonyms

0
votes
3answers
539 views

How can i sort Nested JSON Array?

How can i sort Nested JSON Array? Like for a JSON below... { "id":"rtmc05.lax.someabc.net", "name":"rtmc05.lax.someabc.net", "tenants":[{ "id":"rtmc", "name":"rtmc" ...
0
votes
2answers
101 views

Sorting nested arrays via an Element in each Sub Array

Assuming I have something coming back from a JSON request that essentially looks like this -- $data = array('0'=> array('name' => 'Dr. Smith', 'address' => '3002 ...
0
votes
1answer
103 views

Javascript Nested-Array throwing 'TypeError' - Error

I'm trying to create a nested array in Javascript, but whatever I try to get something out of this array I get an error 'TypeError'. Here is the code snippet: var domains =new Array(); ...
0
votes
1answer
393 views

PHP to Smarty, displaying some nested Arrays

I'm having some issues displaying some nested array results in smarty... here's what I have: $searchResults - an array, where each row is a result set. No problem here. $searchResults[$row][users][] ...
0
votes
0answers
48 views

MySQL nested Table, Array, or Object? Not sure if any of these options are possible.

I have a table for users that contains columns for the user's id, username, password and other user information. I would like to add a column to this MySQL table that contains a column referencing to ...
0
votes
0answers
92 views

Restkit nested array mapping fault

I am trying to map following structure: Plan.json: { "id" : "1", "floors" : [ { "floor" : "1", "constrains" : { "southWest": { "latitude": ...
0
votes
0answers
161 views

wijmo chart: how to bind values to a nested array elements

Referring to the code below, I made a wijmo bar chart as an example to the problem I am having. I am trying to bind to the property "Value1" which is a nested child element in the array "data". The ...