In ArcGIS Online, if a field using subtypes is set as the label field in a web map, the coded value is displayed instead of the description value.
Last Published: February 17, 2016ArcGIS Online
Bug ID Number
BUG-000091592
Submitted
October 21, 2015
Last Modified
June 5, 2024
Applies to
ArcGIS Online
Version found
3.9
Operating System
Windows OS
Status
Will Not Be Addressed
The development team has considered the issue or request and concluded it will not be addressed. The issue's Additional Information section may contain further explanation.
Additional Information
The feature service defines the 'subtype' field which has an esriFieldTypeSmallInteger type.
The JS application shows number on screen which is correct.
The JS application uses this numeric value as the index in the domain. However the server returns no domain definition. So the JS application behavior is correct.
{
"name": "subtype",
"type": "esriFieldTypeSmallInteger",
................
"domain": null, <-------------- no demain defined
"defaultValue": null
}