POST
|
Thanks for the links, but I’m looking for a way to do this in ArcGIS Online, without a portal or a server.
... View more
09-19-2024
12:50 PM
|
0
|
2
|
409
|
POST
|
The goal is to print it with the map on the same page, next to other elements like the scale bar, legend, etc.
... View more
09-19-2024
09:38 AM
|
0
|
4
|
432
|
POST
|
Hi everyone, I'm trying to understand how to enable users to print feature attributes within Experience Builder in AGOL without publishing a template from a server and without requiring a Professional or Professional Plus license. I understand the need for advanced functionality with higher licenses, but printing basic feature attributes seems like a core function. Is there a workaround or alternative approach for users without Professional/Plus access? Thanks
... View more
09-18-2024
12:07 PM
|
0
|
6
|
506
|
POST
|
I have a point layer with (1:M) related tables; I use Field Maps for adding/updating the geometry and Survey123 for the forms (related tables). The layer has a unique ID field that is created with this code: Text(Now(), 'MM DD Y hh mm ss'). This ID is the common key between the geometry and the tables. (I prefer using this readable ID over GlobalID). The problem is that if I later update the location or any of the attributes of the point, the ID changes as well (based on the time of the updates), and it breaks the relationships between the geometry and the related table (that is still referring to the original ID). Is there a way to prevent updating certain attributes when editing, so the ID is generated and assigned only during the initial creation of the point feature?
... View more
12-20-2023
09:27 AM
|
0
|
5
|
1084
|
POST
|
As promised by esri, yesterday’s release fixed this problem - users can now use the All checkbox to turn every source on or off. https://doc.arcgis.com/en/experience-builder/latest/get-started/whats-new.htm
... View more
10-26-2023
09:04 AM
|
0
|
0
|
882
|
IDEA
|
It would be helpful to add headers to each side of the imagery viewer app when using the Swipe tool. I configured the app using aerial images from four different years, so the users can select which year to view on each side of the swipe slider. A header showing the selected year on each side can help the users remember which years they chose for which side. (See suggested example below). I know that users can keep the imagery viewer/selector open to see the selected images, but it covers part of the screen.
... View more
08-11-2023
11:15 AM
|
0
|
0
|
286
|
IDEA
|
@JessicaShue , I also encountered a similar problem where I could not update or submit new points after clearing the list. I tried the solution that @Woodpecker suggested, and it works, but then after clearing the list the comma stayed at the beginning of the list, and it looked like this: , yellow, blue, red... I tried a different approach and added it to the original code. See below. After cleaning the list, the Options field shows the ‘Clear List’ value, and the Options_List field shows the ‘empty’ value, but if you tap the X in the Options field, it clears them both, and you can then submit a cleared field. See the attached screenshots. var selection = $feature["Options"]; var thisFieldValue = $feature["Options_List"]; if (selection == "Clear List") { return 'empty'; } else if (IsEmpty(thisFieldValue)) { return selection; } else if (thisFieldValue == "empty") { return selection; } else if (thisFieldValue == "Clear List") { return ''; } else if (Find(selection, thisFieldValue) != -1) { return thisFieldValue; } else { return thisFieldValue + ', ' + selection; } I hope it helps. @Woodpecker - thanks a lot for sharing the original code!
... View more
07-31-2023
04:40 PM
|
0
|
0
|
1816
|
POST
|
I’m desperately looking for a way to toggle off all layers from the search widget in ArcGIS Experience Builder. Currently, you can toggle all the layers On from the search widget, but you have to manually deselect each layer. It would be more useful if there was a way to uncheck the ‘All’ option, to deselect all layers. I have a map with over 30 layers. In Web AppBuilder there is an option to search all layers or only one layer by selecting it from the layer’s list. In Experience Builder, if you want to search only one layer, you need to deselect every other layer individually. Doing this with so many layers is not practical. I contacted Esri about it a year ago, and they added it to their enhancements list, but it is ‘under consideration’ with low priority, which means that it will probably never going to happen. Web AppBuilder will retire in a year, and I need a solution. Without this option I can’t transfer the app from Web AppBuilder to Experience Builder. Am I the only one who encountered this issue? Any suggestions? Solutions? Thanks
... View more
07-03-2023
12:40 PM
|
1
|
2
|
1071
|
POST
|
Thanks a lot! This is exactly what I was looking for.
... View more
05-15-2023
12:24 PM
|
0
|
0
|
320
|
POST
|
Thanks a lot! It looks like what I need. I will give it a try.
... View more
05-11-2023
01:31 PM
|
0
|
0
|
1504
|
POST
|
I am going to do the join based on the Unique_ID field, it is just that I don't know which of the signs were updated and which weren't. So let's say the original layer has 100 records, with unique IDs ranging from 1-100. The vendor’s data uses the same Unique_IDs but contains only 70 records. I want to replace the corresponding records from the original layer with these 70 records, and keep the other 30 records, but I don’t have a way to know which Signs were updated and which weren’t. The table below represents both datasets. In the original data I need to replace only the records in red, and leave the ones in black untouched.
... View more
05-11-2023
01:21 PM
|
0
|
3
|
1520
|
POST
|
I know they updated the signs because they worked in a specific area, and this is what they were supposed to do. The yellow points in the attached screenshots are ours, and the purple dots are the vendor's. The screenshot in the original message was an example, to help explaining the problem. This is the first part of a project that will include thousands of signs. so I can't sort the signs manually.
... View more
05-11-2023
12:16 PM
|
0
|
5
|
1569
|
POST
|
We have a vendor that collects Signs data in the field. They couldn’t work with our hosted layer so they downloaded the data, worked on it (updated points location and other details), and then sent me the updated data. I now need to import the data back to the original GIS layer and replace existing records with those in the vendor’s data, based on the Sign_ID (unique field). But there is a problem - they didn't update all of the signs. So if there are 500 signs in the area they worked in, they updated about 450 of them, and the other 50 are not in their data. So my question is: is there a way to replace only part of the records in a table based on a unique ID? (Without knowing which Unique IDs were updated and need to be replaced) See the attached screenshot - the yellow points are our data (IDs= 6100, 6101, 6102, 6103), and the blue points are the vendor's data (IDs= 6100, 6101, 6102). So is there a way to replace only 6100, 6101, 6102 and keep 6103 as is? I can't use spatial proximity because their points often have different locations than the original points, and there are other close signs. (e.g. ID= 6101) Thanks
... View more
05-11-2023
11:47 AM
|
0
|
11
|
1923
|
Title | Kudos | Posted |
---|---|---|
1 | 03-25-2022 12:08 PM | |
1 | 12-21-2023 10:27 AM | |
1 | 07-03-2023 12:40 PM | |
1 | 10-26-2022 11:33 AM | |
2 | 03-28-2022 02:31 PM |
Online Status |
Offline
|
Date Last Visited |
2 weeks ago
|