i have a json data Object, i loop over it with $.each to retrieve data dynamically, what i want to do is to display all except one value which is the ID, i don't want the ID to be displayed in the html structure. How can i do this please ? thank you
Here is my Json data Object :
$arrData['firstInfo'] = array('title'=> 'Cars');
$arrData['secondInfo'] = array('id', 'reference', 'size','name');
$arrData['thirdInfo'] = array(array('1', 'Ref12012', 'big', 'Toyota'),
array('2', 'Ref16489', 'small', 'Peugeot'),
array('3', 'Ref56479', 'medium', 'Mercedes')
);
Here is my code :
Html += '<div>';
$.each(arrData['secondInfo'], function(Idx, currentValue)
{
Html += '<div>'+ currentValue +'</div>';
});
Html += '</div>';
$.each(arrData['thirdInfo'], function(Idx, currentValue){
Html += '<div>';
// columns
$.each(currentValue, function(Idx, currentValueCol){
Html += '<div>'+ currentValueCol +'</div>';
});
Html += '</div>';
});
You may accomplish that by keeping the index of the "Id" field and using it on last loop. On the following fiddle,
indexOfIdField
keeps that data.