map two response into one label
Hello
I need to create a list and i need two database responses to appear in one label.
is it possible?
I have this code wich works for the first item only. It wont populate the entire list.
var lat = value.f1;
var lng = value.f32;
//var str = value + " is located at " + lat + ","+lng;
var str = lng + " Quantity Ordered" + lat;
Appery("f1company").text (str);
any sugestions?