Hello,
i have a select query which return a feature with coded value in "selectFeature.attributes.feildName" for the domain, But we need the name/description NOT coded value.
selectQuery.geometry = evt.mapPoint;
selectQuery.distance = 5;
selectQuery.units = "meters"
selectQuery.returnGeometry = true;
Parcels.selectFeatures(selectQuery, FeatureLayer.SELECTION_NEW, function (features) {
if (features.length > 0) {
updateFeature = features[0];
map.infoWindow.setTitle(features[0].getLayer().name);
map.infoWindow.show(evt.screenPoint, map.getInfoWindowAnchor(evt.screenPoint));
}
else {
map.infoWindow.hide();
}
});
});
How can i replace the coded domain value with the description in "updateFeature.attributes" in above code?