|
POST
|
Are you using the 123 widget in ExB? Or the Edit widget which is more for the Field Maps or AGOL forms?
... View more
Monday
|
0
|
2
|
22
|
|
IDEA
|
Just got hit with this today. Built out a nice project with the new multiple field. Then we found it does not work with a view. BUT the only way to control editing now is a view (which also drives us nuts). So is it not possible to have editing control and use the new multiple field type? Seems like a pretty big limitation. Is this correct? thanks
... View more
Wednesday
|
0
|
0
|
157
|
|
POST
|
What I do is have the label column be Code Scientific name Common name all together with 4 spaces between each. Then the user can search on any one of these all in one spot. Even if they just know part of the plant it narrows the list down to what is actually in their state. Then I set the name column to just be the code so that is all that gets stored so its all consistent. Works super slick. Note I have 12 different state lists that are up to 60,000 each with no issues. I use autocomplete with a calc of the state field to grab the correct CSV. Using external csv for these big lists is much faster and I only load the state I need. autocomplete search(${SpeciesListName}, "matches", "Plants", "Y") Funny this is actually for our Wetland project also. We do share our forms if you want them just pm me. Hope that helps.
... View more
Wednesday
|
1
|
0
|
136
|
|
POST
|
My guess is its the periods in the relationship name here. I thought they fixed that but it did used to break I think DNRAIMSv3.DBO.LWCF_Inspections I would try a new test service without the periods in the relationship name to see.
... View more
2 weeks ago
|
0
|
0
|
192
|
|
POST
|
Hmm I have seen this but it tends to fix on a new map. Can you post a screen shot of the Rest page showing it. It could be a naming issue that is does not like. Trying to remember what it was that I have seen. Not sure if M:M are supported.
... View more
2 weeks ago
|
0
|
0
|
222
|
|
POST
|
Did you add them via URL manually with the \0 at the end or from the add data interface? That can make a diff. I would start from the layer item page then open map from there just to see.
... View more
2 weeks ago
|
0
|
0
|
232
|
|
POST
|
Assuming you went into the popup and added a Related records element? Did you make the map before you added the relate? If so try a brand new map as it only picks these up on initial adding of the layer.
... View more
2 weeks ago
|
0
|
0
|
240
|
|
BLOG
|
Could we also get some type of official coms on the bugs with the June update please. Here is a good start to the list. Thanks https://community.esri.com/t5/arcgis-online-questions/arcgis-online-june-2026-update-known-issues/m-p/1711334/thread-id/69077
... View more
2 weeks ago
|
0
|
0
|
106
|
|
POST
|
Analysis Widget parameter help descriptions are now showing the entire metadata page vs just the help for that input. We are rather positive this used to work correctly. Also the very top button which should show the whole help shows no text at all. Maybe a June update issue? Thanks
... View more
3 weeks ago
|
0
|
1
|
162
|
|
POST
|
This all looks good to me. Could be some other thing in your form. Any green error marks on any fields?
... View more
3 weeks ago
|
0
|
0
|
55
|
|
POST
|
Ok here you are. Then you can just have 1 layer here and go 1 by 1 to find it. Then when you find it go into Pro and Export Features and see if that fails - if it does it will give you a objectid that failed. The config file looks like this replace with your item id. ServiceBackupName;f8ef16dd41474;{"layers":[{"id":0},{"id":1}]} script (note make sure Pro is logged in since it will pull creds from there). import os, time
from arcgis.gis import GIS
# vars for config file and output dir---------
# Setup inputs
configFile = r"YouPath\Config.txt"
backupDir = r"outdir"
#--------------------------------------------
# Make a connection to ArcPro
#gis = GIS('pro',verify_cert=False)
gis = GIS('pro')
# read in the config file for list of HFS for Survey123
BackupAllAGOHFSConfigFile = open(configFile, 'r')
HFSList = BackupAllAGOHFSConfigFile.read().splitlines()
BackupAllAGOHFSConfigFile.close()
for HFS in HFSList:
HFSname = HFS.split(";")[0]
itemId = HFS.split(";")[1] # this now comes from the main AGO page with all the settings.
exportParameters = HFS.split(";")[2] # now added to do all but photos due to size
#exportParameters = '{"layers":[{"id":0},{"id":2}]}'
# Start the export to GDB job
dt = time.strftime("%Y%m%d_%H%M%S")
#out_file = os.path.join(backupDir,"{}_{}".format(HFSname,dt))
out_file = os.path.join(backupDir,"{}_{}.zip".format(HFSname,dt))
print ("Export job started for " + HFSname + dt)
fsLink = gis.content.get(itemId)
result = fsLink.export("export" + HFSname + dt, "File Geodatabase", exportParameters)
# Save to file system
dt = time.strftime("%Y%m%d_%H%M%S")
out_file = os.path.join(backupDir,"{}_{}.zip".format(HFSname,dt))
print ("Saving final downloaded FGDB to {}...".format(out_file))
result.download(backupDir, out_file)
# Remove the extracted FGDB from AGOL (cleanup)
print ("Removing the export file from AGOL")
deleteResult = result.delete()
print ("Delete result is " + str(deleteResult))
... View more
3 weeks ago
|
0
|
0
|
180
|
|
POST
|
Not sure what this means? in field maps this url does replace the {PointID}s with the associated attributes, are any of the fields arcade expressions or anything like that? I have not tried to access a Z value before is that a real field that has values? This looks correct to me on the formatting. When it fails it tends to be the wrong type, or too long for the field, or trying to pass into a repeat which you cannot do.
... View more
3 weeks ago
|
1
|
3
|
234
|
|
POST
|
Possible new add https://community.esri.com/t5/arcgis-experience-builder-questions/experience-builder-edit-widget-configuration/m-p/1713409#M23821
... View more
3 weeks ago
|
0
|
0
|
296
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | Wednesday | |
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago | |
| 1 | 3 weeks ago |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|