I have a service return that has a few pointers in it, and each one is included, so it shows the entire record for that pointed-to collection. I want to be able to reference multiple values from that pointer's records like I can with the parent object, like this,
label = value.start_date + " - " + value.deadline_date;
return label;
and place the JS on a map.
what would be the code to do the same thing for two fields in the employee_ptr object in that picture?