Hi,
Having issues with retrieving a field from a FeatureSet. Following other examples, referring the Field name as per below is supposed to work:
myFeature.job_wo
myFeature["job_wo"]
However I get a:
Execution Error:Runtime Error: Cannot call member property on object of this type. job_wo
The below is my code for reference:
var portal = Portal('https://linktomyportal/');
var completed_surveys = FeatureSetByPortalItem(
portal,
'portalobjectid',
0,
[
'objectid',
'job_wo'
],
false
);
Console(completed_surveys.job_wo);