|
POST
|
I have an HTML table within an indicator to show the percentage of overdue 311 cases. Recently, I noticed that I needed to reformat the table because the wording causes the table to expand vertically which makes the user have to scroll to read the information. When I reformat the tables, the tables no longer extend all the way to the edges of the indicator like before. I didn't change anything with the width of the table only the cell that should contain the text. Before: After:
... View more
03-14-2024
12:54 PM
|
0
|
2
|
810
|
|
POST
|
I was able to figure out what was causing the error. The feature class that I was using has a globalID field that doesn't allow for null values. I created a new feature class without the globalID field and imported the data from the original feature class. Then I used the new feature class as the input data to create the territory solution which ran without any errors.
... View more
09-06-2023
07:10 AM
|
0
|
0
|
1267
|
|
POST
|
Thanks for the reply! I should clarify a little bit. I exported a polygon feature from my SDE environment to a local fgdb so that I could get the number of points within the polygon. I then used the polygon layer from the local fgdb and that when I received the error message. I'm using version 2.9.5 of Pro.
... View more
08-14-2023
05:58 AM
|
0
|
0
|
1315
|
|
POST
|
I'm trying to create a territory design and trying to run the Create Territory Solution tool using a polygon feature class from my SDE database. I run the tool and I end up getting an error saying The field is not nullable. All of the fields allow nulls so I'm not sure why I keep getting this error. Any help would be greatly appreciated! Thanks in advance!
... View more
08-10-2023
09:20 AM
|
0
|
5
|
1342
|
|
POST
|
Just to make sure I read your response correctly, the workbook does not update when it loads or refreshes except if I have data that are using cross filters or pre-defined filter then it should update the data if I reload the workbook. Thanks again for the explanation!
... View more
04-10-2023
08:00 AM
|
0
|
1
|
1533
|
|
POST
|
Thanks for the quick response Kate! This might be a dumb question, but when a user opens the workbook does the data refresh as the workbook loads or does the data become static as soon as I share the workbook?
... View more
03-30-2023
05:44 AM
|
0
|
1
|
1575
|
|
POST
|
I'm extremely new to ArcGIS Insights and I created a new workbook and I'm ready to share it. I was reading in the documentation that when you share a page there is the ability to create a schedule so that the data on that page is refreshed. Is there a way to do something similar for the entire workbook? Thanks in advance.
... View more
03-29-2023
01:20 PM
|
1
|
5
|
1600
|
|
POST
|
Thanks for the answer Zach. I figured that was the case and I guess I overlooked that part of the documentation.
... View more
03-29-2023
01:16 PM
|
0
|
0
|
960
|
|
POST
|
Using this blog, I created a survey with a geocode appearance using a locator from my organization. I use several JavaScript functions to get attributes of the address from other layers. I recently read that JavaScript functions can work offline; however, is there a way to use the locator offline? Thanks!
... View more
03-23-2023
11:39 AM
|
0
|
2
|
1032
|
|
POST
|
I've created a hosted feature layer that is edited by users in ArcGIS Field Maps. From this hosted feature layer, I created a hosted view layer. I created a dashboard that uses the view layer to the progress of our field crew. The view layer was working perfectly until today. When I open the dashboard or a web map that contains the view layer, I get an error message saying the layer is unavailable. However, if I add the view layer into Pro then the view layer displays perfectly. Has anybody else had this happen to them or knows how to fix it? Thanks in advance!
... View more
11-07-2022
07:38 AM
|
2
|
1
|
901
|
|
POST
|
Thanks for the reply. I managed to somehow over look the show attachments option for the table.
... View more
11-07-2022
07:09 AM
|
0
|
0
|
569
|
|
POST
|
I've got a point layer that has a related table where picture attachments are stored. How would I include the attachments on the main point layer? Or is there a way to show the pictures in a popup for the table? I'm assuming Arcade is the best way to go about it. Thanks in advance, Michael
... View more
11-01-2022
01:51 PM
|
0
|
2
|
626
|
|
POST
|
I'm trying to create a calculated expression to populate a value in one of my fields. The expression gets the address of a feature that's within 100 feet of the feature the user is adding. If the expression doesn't get an address I want it to do the same process but with a different layer. I'm using literal strings in Arcade to populate the field. Can I not use multiple literal strings in the expression? Below is my Arcade expression. if (IsEmpty(Geometry($feature))){
return null
}
var case = FeatureSetByName($map,"Active Container Related SRs")
var bufferedLocation = Buffer($feature, 100, "feet")
var candidateParcels = Intersects(case, bufferedLocation)
var featuresWithDistances = []
for (var f in candidateParcels){
Push(featuresWithDistances,
{
"distance": Distance($feature, f, "feet"),
"feature": f
}
)
}
function sortByDistance(a,b){
return a["distance"] - b["distance"]
}
var sorted = Sort(featuresWithDistances, sortByDistance)
var closestFeatureWithDistance = First(sorted)
if (IsEmpty(closestFeatureWithDistance)){
// return null
var rcase = FeatureSetByName($map,"Active Recycling Container Related SRs")
var rParcels = Intersects(rcase, bufferedLocation)
var recycle = []
for (var i in rParcels){
Push(recycle,
{
"distance": Distance($feature, i, "feet"),
"feature": i
}
)
}
return `${recycle["feature"]["IncidentAddress"]}`
}
return `${closestFeatureWithDistance["feature"]["IncidentAddress"]}`
... View more
10-17-2022
11:07 AM
|
0
|
1
|
480
|
|
POST
|
Thanks for the reply. I'm assuming that the Sort function is correct. I got it from #7 from this ESRI blog article
... View more
08-25-2022
07:58 AM
|
0
|
0
|
2224
|
|
POST
|
Justin, I took a look at the logs and I saw that the error was "The target server failed to respond" so I changed the layer to a more reliable one and now it's working as expected. Thanks for your help. Michael
... View more
08-25-2022
07:56 AM
|
1
|
0
|
2224
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 08-09-2024 07:44 AM | |
| 1 | 03-29-2023 01:20 PM | |
| 2 | 11-07-2022 07:38 AM | |
| 1 | 01-21-2021 01:32 PM | |
| 1 | 08-25-2022 07:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-18-2025
07:01 AM
|