I found a problem when i needed to put object value in table.
When i use this code:
success: function(data) {
$.each( data, function( key, value) {
$("tr#test").html("<td id="+value.type_id+">"+value.description+"</td>");
})
}
i get only the last one value on page,not all values.
Could somebody advise how to get all the values?