|
IDEA
|
Hello. I would like more fine grained control over the places where a Theme color is used. For example, currently the Body Link Color is applied to several disparate, unrelated controls or widgets (see the red items in the screen cap): the editor toolbar, focus color on various buttons and inputs. Ideally, there'd be multiple settings controlling those colors. Or perhaps some other way to more easily control the colors via css - without having to use `!important` in multiple places or over-writing Hub's default css rules. Thank you.
... View more
3 weeks ago
|
1
|
1
|
144
|
|
POST
|
This issue has been associated with a specific BUG report: From ESRI: BUG-000181789 has been associated with your account. Description: In ArcGIS Hub, using keyboard navigation, the focus remains in the footer when opening a new page that is linked in the footer instead of jumping to the top of the newly opened page.
... View more
01-29-2026
09:41 AM
|
0
|
0
|
285
|
|
POST
|
Hello. I am getting a 404 error message displayed in Dev Tools console whenever i load a hub page for my site. The message appears twice. https://hub.arcgis.com/api/discussions/v2/settings/eaad7f2ffb454166ae14d95d02c901b2 404 (Not Found) Is this one of my files/items that Hub is looking for, or is this a Hub file? Thank you.
... View more
01-26-2026
10:38 AM
|
0
|
0
|
255
|
|
POST
|
@VenkataKondepati thank you for the info. I have submitted a bug report with Esri Technical Support.
... View more
01-05-2026
10:04 AM
|
2
|
0
|
492
|
|
POST
|
Hi there. I don't know if this is a new thing, but it is something that several of our users have noted and started to complain about recently. We have a collection of 'catalog cards' on our Hub home page. If a user clicks on a Category icon (any category icon), the app navigates to the `/search` page as expected, but the page is scrolled all the way to the bottom so that only the page footer is visible. I can scroll back up to the top - but that's at frustrating user experience. Perhaps interestingly, if one 'reloads' the `/search' page, the reloaded page is focused at the top of the page as expected. I appreciate any suggestions about why this might be happening and whether the behaviour can be fixed. Thank you.
... View more
01-02-2026
05:11 PM
|
0
|
3
|
617
|
|
POST
|
@TimJordan1 At this point the best Esri tech support is offering is that we just need to update our servers' operating systems. Would it be that simple. While i agree that is clearly the best long term approach, it's not helpful for the short term. Have you heard anything from Esri or figured out anything helpful to resolve this issue?
... View more
09-30-2025
01:30 PM
|
1
|
1
|
619
|
|
POST
|
Hello. Within the last 36 hours or so from Sept 25, 2025, our AGOL hosted feature services (at least two of them) have started rejecting connections from our Web API. We are using oauth authentication, passing a client id and password to GetToken, then appending the token to subsequent requests to the feature services. The key pieces of the response back from the AGOL hosted service are "The SSL connection could not be established, see inner exception." and the inner exception "Authentication failed because the remote party sent a TLS alert: \u0027HandshakeFailure\u0027." This is true for multiple servers running Windows 2012 R2. However we have a couple of other servers running Windows 2022 and 2025 where the exact same code is able to connect successfully. I have verified that our Windows 2012 servers are using TLS 1.2. Those same servers are able to get Tokens from the GetToken endpoint but cannot connect to the Hosted Services. For at least the past 6 years prior, the API was happily connecting multiple times per day. This is a recent event. Any help is appreciated. Thank you
... View more
09-25-2025
07:37 PM
|
1
|
3
|
845
|
|
POST
|
Hi @Neal_t_k I've wandered pretty far down the 'roll-my-own-report-with-python' path. It's probably too far to back out of that path now 😉 Thanks again for all your help.
... View more
08-22-2025
06:20 PM
|
0
|
0
|
1396
|
|
POST
|
Thanks for the link. I've been looking for something like that. There are a couple hundred sites so that may not be an efficient approach for this problem. I'm looking at other programmatic python based pdf report generators now. The Survey123 Report generator just may not be the right tool for this situation.
... View more
08-22-2025
12:02 PM
|
0
|
3
|
1425
|
|
POST
|
Hey @Neal_t_k Thanks for your super fast response. Agreed that just storing the label value is the easiest for reporting. The reason it's not my preferred approach is that currently i am storing the 'id' value which can never change whereas the 'label' value can and does change. The data is the 'location' where the work was done - its id value wont/cant change based on company 'business rules'. However the name of the site can change. It doesn't happen often, but it does happen. In those cases, i'd have to go back thru all the previously submitted records and change the location label value. So, it's a classic data maintenance and QA/QC reason for not storing the 'label'
... View more
08-22-2025
10:18 AM
|
0
|
0
|
1466
|
|
POST
|
Greetings. In my survey i have a select_one question where the answers are populated via 'autocomplete search()' functionality. The 'name' value, that is the 'id' of the selected answer, is being stored in the survey's feature class as the actual answer to the question. The 'label' value of the selected answer is stored in the Survey as a calculated field but its esri:fieldType is 'null' so i think it's value is not kept when the survey is submitted. Is there a way to get that 'label' value for display in the survey Report template. The 'id' value won't mean anything to Report readers; only the 'label' will. Thank you
... View more
08-22-2025
10:03 AM
|
0
|
7
|
1472
|
|
POST
|
Perfect! 'join' is exactly what I was looking for. Thank you. A few 'concat' statements later, i've got the sql query working exactly as needed.
... View more
07-09-2025
09:49 AM
|
0
|
0
|
750
|
|
POST
|
Hello. I'm wondering how to get the all values from a 'select_one' question that exists within a repeat. Ultimately, I'd like to use that list of values in a 'search()' expression to populate the list of values to that select_one in the 'next' repeat. I'm confused just re-reading that last sentence, so here's some background. My survey is used to track 'treatments' of various trees. Each tree has a unique 'tree tag id'. A single survey can be used to track treatments for any number of trees. The 'TreeTagId' is a select_one question within a repeat. I am hoping to create a drop-down list of tree tag ids that does not include any tree tag ids already selected in the survey. To do that, I'm using the approach described here to create a URL query that excludes previously selected tree tags. So, something like where=treetagid NOT IN ('101', '102', '103') . In that example, the user has completed three 'repeats' and selected tree tag ids 101, 102, 103. So in the 4th repeat, none of those TreeTagIds would be in the select_one list. I hope that makes sense.... As a new repeat is added, I am hoping to somehow 'iterate' over the previous repeats, pull out the value of the 'TreeTagId' question and append it on to the 'where' statement to be used in the 'search()' calculation for the TreeTagId select_one of the new repeat. Is such a thing possible? Thank you
... View more
07-08-2025
04:47 PM
|
0
|
2
|
818
|
|
POST
|
@MikeSweeney This is fabulous. Thank you for the example code!
... View more
04-01-2025
10:06 AM
|
0
|
0
|
2369
|
|
POST
|
I figured it out. I needed to open / create my notebook after opening a Lake House in my workspace so that the notebook was in the 'context' (i guess) of a lake house. When i got the error, i had started by creating a new notebook as a sort of 'stand alone'. All is working as expected now.
... View more
03-17-2025
02:15 PM
|
1
|
0
|
1083
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 02-24-2021 12:15 PM | |
| 2 | 01-05-2026 10:04 AM | |
| 1 | 09-30-2025 01:30 PM | |
| 1 | 09-25-2025 07:37 PM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|