Bug ID Number |
BUG-000173914 |
Submitted | January 28, 2025 |
Last Modified | February 17, 2025 |
Applies to | ArcGIS Online |
Version found | Nov 2024 |
Operating System | Windows OS |
Operating System Version | 11.0 64 bit |
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
This behavior is observed because of how ArcGIS Pro writes out feature templates to the service. The default value for the template for the Name field is actually not null (" "), which is why it does not trigger the check. The form is simply honoring the authored template.
"templates" : [
{
"name" : "Noodle",
"description" : "",
"drawingTool" : "esriFeatureEditToolPoint",
"prototype" : {
"attributes" : {
"Country" : null,
"Profesison" : null,
"Name" : " ",
"Age" : 0
}
}
}
Workaround
At the moment, the only workaround is to create the same layer in ArcGIS Online with Allow Null Values unchecked.
Steps to Reproduce