|
BLOG
|
@Jianxia are arcade calculations not working in the batch edit a known issue, i've noticed that the fields calculate on the form but are not being saved to the record when you hit update
... View more
07-06-2025
11:34 PM
|
0
|
0
|
607
|
|
POST
|
ah, i didn't want to allow them to delete the parent only the related child table record
... View more
07-04-2025
03:23 AM
|
0
|
0
|
406
|
|
POST
|
i've just tried the new "Batch Editor" functionality it seems to calculate the values in the form but it doesn't save them against the data and only saves the values you manually update. the below example the outcome / high level outcome & status fields are all calculated based on the questions above and the comments field is manually entered after pressing update and viewing the data in the popup it shows the comments populated but all of the calculated columns are blank
... View more
07-04-2025
02:55 AM
|
3
|
7
|
765
|
|
POST
|
Is your layer's deleting privilege turned off? yea i believe it is but i can't find anywhere to enable it, "tables" do not appear in the same way as layers within the edit widget
... View more
07-04-2025
02:15 AM
|
0
|
2
|
412
|
|
POST
|
Hi @Allen_Zhang thanks for that, it does show the relationship and when i try to edit it i can add / update / delete but that is because i am the data owner, any one else who tries it just has the ability to add/update the feature service has all three enabled, i just cant see anywhere to enable delete against the table Stu
... View more
07-03-2025
05:31 AM
|
0
|
4
|
430
|
|
POST
|
we have a similar use case and use an imbedded dashboard element that only shows the number based on the current users audit failures this is the dashboard bit // Write an expression that returns a FeatureSet.
// Documentation: https://arcg.is/3c419TD
// Samples: https://arcg.is/HPbi00
var features = FeatureSetByPortalItem( Portal('https://www.arcgis.com'), '3e9...790d', 1, ['*'], false);
var currentusr = GetUser().username;
var filterwhere = "Audit_Status in ('In Progress') and Survey_by = '"+currentusr+"'" //'Open','In Progress','Query'
var result = Filter(features, filterwhere);
return result; i set the dashboard to refresh every 15 minutes or so see if that fits the bill Stu
... View more
07-01-2025
10:33 PM
|
0
|
1
|
478
|
|
POST
|
apparently its been fixed, they advise clearing your cookies... it's still a little slow bit a lot better than it was...
... View more
07-01-2025
06:29 AM
|
0
|
1
|
561
|
|
POST
|
i'm using the edit widget in experience builder with feature layers you can select if you want to be able to Add / Update / Delete , but i can't see any way to do the same for a table, they don't even show in the list
... View more
07-01-2025
03:30 AM
|
0
|
6
|
513
|
|
POST
|
is anyone else having performance issues today, we're starting to have slowness and timeouts again Stu
... View more
07-01-2025
03:24 AM
|
0
|
0
|
234
|
|
POST
|
we are hosted in the EU and still having issues, its painfully slow and keeps timing out too. i've added a comment to our ESRI support case Stu
... View more
06-27-2025
02:05 AM
|
1
|
0
|
819
|
|
POST
|
i think its related to this: ArcGIS Online Health Dashboard we're finding the same issues accessing apps and data Stu
... View more
06-26-2025
06:00 AM
|
2
|
0
|
3337
|
|
POST
|
the issue seems to be related to the field names being more than 30 characters in length, well that's the issue i was having
... View more
06-16-2025
11:57 PM
|
0
|
0
|
111
|
|
POST
|
you should be able to see the tasks if your an admin, its under Manage in the notebooks tab
... View more
06-16-2025
11:54 PM
|
1
|
0
|
281
|
|
POST
|
i have an experience builder app which has a map and the map has 4 layers in it, i want to clone the app and the map and only 1 of the 4 layers and then to remap the cloned feature service into the cloned map. i've tried this but it copies all 4 layers, i even tried the item_mapping and used the same id as both from pathlib import Path
import sys
import pandas as pd
from arcgis.gis import GIS, Item
from arcgis.env import active_gis
from arcgis.features import FeatureLayerCollection
from arcgis.mapping import WebMap
source = GIS("home")
print(source)
target = GIS("home")
print(target)
group = source.groups.search("id: 8d..fd")[0]
for item in group.content():
print(item['title'])
print(item['id'])
xid = item['id']
items = source.content.search(query="id:{0}".format(xid))
#items
for item in items:
try:
print("Cloning " + item.title)
copy_list = []
copy_list.append(item)
print (copy_list)
if (item.title == "In_Map"):
item_mapping = {"db..d77" : "db..d77"}
target.content.clone_items(copy_list, copy_data=True, search_existing_items=True, item_mapping = item_mapping, folder="In_Map_Test_version")
else:
target.content.clone_items(copy_list, copy_data=True, search_existing_items=True,folder="In_Map_Test_version")
print("Successfully cloned " + item.title)
except Exception as e:
print(e) any ideas?
... View more
05-09-2025
07:29 AM
|
0
|
1
|
546
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 09-08-2025 07:14 AM | |
| 8 | 07-17-2025 01:23 AM | |
| 3 | 07-04-2025 02:55 AM | |
| 1 | 06-27-2025 03:41 AM | |
| 1 | 06-27-2025 02:05 AM |
| Online Status |
Online
|
| Date Last Visited |
an hour ago
|