I have this in javascript:
Posts.value = responseObject;
console.log("Post title: " + Posts._values[0].issue_Posts[1].Title);
note: ‘_values’ is automatically added to the object)
how do I access the same element under UX? (without iterating with Each)
{Posts.issue_Posts[1].Title}
doesn’t works.
I’v tried many combinations with no success.