|
POST
|
We use a ton of iFrames on our Hub pages. We create all our charts, graphs, etc in standalone html pages and then display them on Hub pages via the iFrames. We are regularly making changes to the html pages, e.g. colors used in bar charts, tooltip content, etc, and its a bit of a pain to get the revised html pages to display in the iFrame. Within the standalone html pages we are using the standard cache-busting 'meta-tags', but they don't seem to have any impact on the 'parent' Hub page that is hosting the iFrame. The Hub page always seems to load a cached version of the html page. <meta http-equiv='Pragma' content='no-cache'> <meta http-equiv='Expires' content='0'> <meta http-equiv='Cache-Control' content='no-cache'> Any thoughts or suggestions on ways to have the Hub pages force-ably load the edited html pages into the iFrames rather that used cached versions of the files?
... View more
06-10-2019
09:43 AM
|
0
|
2
|
1788
|
|
POST
|
Hey Graham Hudgins - our Hub Team members report that they can save edits. Thank you and the Hub Team for the quick action.
... View more
05-22-2019
03:41 PM
|
0
|
0
|
1787
|
|
POST
|
Hey there. Since Tuesday 5/21/2019, none of our Hub Team members can save edits to Hub pages. The only users that can save edits are AGOL Org Admin level users. As mentioned, this behavior started recently. One of our Team members had a page that had been open over the weekend. Today he was able to save a small text change, but after saving\viewing the edit and starting a new edit session, he was no longer able to save changes. The error message which appears at the bottom of the screen is: Error: Unable to save site domain changes Any idea what's going on? Thank you
... View more
05-22-2019
11:29 AM
|
0
|
5
|
2132
|
|
POST
|
Hey Andrew Chapkowski At the 2019 Dev Summit you presented a notebook in the 'Pandas and Spatially Enabled Data Frame' session based on the 'La Quinta means 'close to Denny's' joke. Is that notebook available for public consumption? I looked in the https://github.com/Esri/arcgis-python-api/tree/master/talks/DevSummit2019 repo but couldn't find it. Thank you.
... View more
04-30-2019
04:57 PM
|
1
|
1
|
1218
|
|
POST
|
Brian Rollison Looks like i wrote too soon. So i am owner of the Hub Application. I select the checkbox in My Content. I click the Share button. I get a drop down with two options..... I select the 'Access and Update Capabilities'. I then get a modal dialog which displays the potential groups that i can share with. The Hub Admin Group is not an option in the list of Groups. I am a member of that group. Not sure how to set the appropriate permissions....... Thanks again, Tom
... View more
03-28-2019
05:22 PM
|
0
|
1
|
2784
|
|
POST
|
Brian Rollison Nevermind. I was being dense. You were talking about AGOL; i was looking in the Hub Admin pages. So, i think i got it from here. Thanks again
... View more
03-28-2019
01:14 PM
|
0
|
1
|
2784
|
|
POST
|
Brian Rollison Thank you for the reply. Can you provide a bit more detail about steps 1 and 2? I think today is a particularly dense day for me and I'm not quite getting where the home app is and where the checkbox of step 3 is. Thank you.
... View more
03-28-2019
01:08 PM
|
0
|
0
|
2784
|
|
POST
|
We have cloned one of our Hub sites and created new instances of each of the pages within the site. The owner of the site and pages can view and edit the site and pages exactly as expected. However, non-owner members of the site/pages see some very odd behavior: user is a member of the Hub Administration Group the Site and all Pages are shared with the Organization user can view the site in the Site Manager page user can click the 'Pages' button on the Site Manager page and see the list of pages. user can click 'edit pencil' on the Pages page to open up a Page for editing user can make edits to the content of the Page when user clicks on the 'Save' button, a error message is displayed `You do not have permissions to access this resource or perform this operation.`. The error code is `GWM_0003` when user closes out the page and then returns to edit the page, the changes that were made are persisted in the page despite being told that the edits were not saved. from the edit page, when the user clicks the 'view' button, user is asked to login. when providing appropriate credentials user gets messages indicating insufficient permissions Any thoughts about what's going on?
... View more
03-28-2019
10:48 AM
|
0
|
7
|
2928
|
|
POST
|
Hey there. We have run into this problem as well - we want to use a filtered list with a select_multiple question. But, alas, that doesn't seem possible, yet Can you provide some additional details on how you are swapping out list_name for a question based on a 'choice' as you outlined in your response? Thank you.
... View more
03-20-2019
04:54 PM
|
1
|
2
|
10290
|
|
POST
|
John Gravois thanks for the sample. Any idea on how to set the label on the chart defined by the JSON below? I want the y label to to be 'Number of trips'.....I can use the ember-cli-cedar page (and HUB) to draw the chart, but there is no Y axis label. And i can't figure out how to force one to show up. Or is there a better way to configure the chart? Thank you. {
"type": "bar",
"datasets": [{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "auto",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Auto'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "carpool",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Carpool ride share'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "bike",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Bike'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "walk",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Walk'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
},
{
"url": "https://services2.arcgis.com/McQ0OlIABe29rJJy/ArcGIS/rest/services/mode_share_from_ACS_2017/FeatureServer/0",
"name": "transit",
"query": {
"where": "NOT(County = '4-county') AND Mode = 'Transit'",
"orderByFields": "Trips_SUM DESC",
"groupByFieldsForStatistics": "County",
"outStatistics": [{
"statisticType": "sum",
"onStatisticField": "Trips",
"outStatisticFieldName": "Trips_SUM"
}]
},
"join": "County"
}
],
"series": [{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Car"
},
"source": "auto",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Carpool"
},
"source": "carpool",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Bicycle"
},
"source": "bike",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Walk"
},
"source": "walk",
"group": true
},
{
"category": {
"field": "County",
"label": "County"
},
"value": {
"field": "Trips_SUM",
"label": "Transit"
},
"source": "transit",
"group": true
}
],
"style": {
"colors": [
"#283250",
"#2c5e79",
"#448c96",
"#7abaa9",
"#a1cebe"
]
}
}
... View more
02-21-2019
11:53 AM
|
0
|
3
|
4511
|
|
POST
|
John Gravois and Tom Wayson - i would greatly appreciate some guidance when working on Cedar charts. I am trying to update the axes on a JSON chart in our Hub app. The chart is type Bar and draws as desired, except that there is no Y-axis label and the X-axis labels are draw at a -45 angle. I want to add the Y-axis label and have the x-axis labels displayed at 90 degrees. I have followed the examples describe at this esri link in the JSON specification section and the examples at ember-cli-cedar, but i cant seem to change either the content of the Y-axis label or the rotation of the x-axis labels. Based on the esri docs, i have added the content below to the 'bar' chart example at ember-cli-cedar: "overrides": { "legend": { "enabled": true }, "backgroundColor": "#E6E6FA", "backgroundAlpha": 1, "categoryAxis": { "labelRotation": -90 } } the background color changes and the legend appears, but the axis label does not rotate. I have tried the following code in both the ember-cli-cedar playground (nested in the 'overrides' and as a standalone element) and the amCharts CodePen. It works in the CodePen but not in the cedar playground. "xAxes": [{ "type": "CategoryAxis", "dataFields": { "category": "country" }, "renderer": { "labels": { "rotation": -90, "verticalCenter": "middle", "horizontalCenter": "left" } } }], I've tried similar things with setting the Y-axis label but have had the same general luck - doesn't work in Cedar; works in amCharts Code Pen. Any thoughts on how to change the contents of the Y-Axis label and the rotation of the x-axis labels? Thank you
... View more
02-15-2019
04:29 PM
|
1
|
7
|
4885
|
|
POST
|
After working with Esri Tech Support, the behavior I described has been officially denoted as a bug in Operations Dashboard (BUG-000120067).
... View more
02-13-2019
10:51 AM
|
0
|
0
|
3748
|
|
POST
|
We have created a web map with a pop-up dialog box that generates a URL that opens a Survey123 survey. That functionality works great. However, when we add the web map to an Ops Dashboard, that URL has some funky URL encoding added which messes up the URL so that the survey can not be opened. Here is the URL that is generated in the pop-up from the stand-alone web map (I have replaced the item id, lat, lon and firm name with generic values😞 arcgis-survey123://?itemID=<item-id>¢er=<lat>,<lon>&field:FIRMNAME=<firm-name>&field:METRO_FSCRP_ID=fscrp10000251&field:STREET=4130%20SW%20117TH%20AVE%20%23%20H Here is the URL that is generated in the pop-up from the Ops Dashboard web map: arcgis-survey123://?itemID=<item-id>%C2%A2er=<lat>,<lon>&field:FIRMNAME=<firm-name>&field:METRO_FSCRP_ID=fscrp10000251&field:STREET=4130%20SW%20117TH%20AVE%20%23%20H Note that "¢er" in the URL generated in the stand-alone web map pop-up has been replaced by "%C2%A2er" in the URL in the Ops Dashboard map pop-up. The result is that an invalid itemId is created and Survey123 can't open the survey..... the Survey item ID contains a cent character.
... View more
02-08-2019
11:28 AM
|
0
|
10
|
4666
|
|
IDEA
|
this sounds like the functionality i suggested as well (manually grouping multiple categories into a single category https://community.esri.com/ideas/15668-allow-multiple-categories-to-be-grouped-manually-in-a-pie-chart). I wonder if we can combine them to get a more significant 'push'
... View more
10-19-2018
11:57 AM
|
0
|
0
|
5156
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 9 | 04-14-2026 03:22 PM | |
| 1 | 02-24-2021 12:15 PM | |
| 2 | 01-05-2026 10:04 AM | |
| 1 | 09-30-2025 01:30 PM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|