|
POST
|
This error might be different if you aren't seeing the "Aw snap". Does it happen every time you create an instant app?
... View more
01-16-2024
10:31 AM
|
0
|
0
|
4672
|
|
POST
|
We’ve run into this issue with the app configuration on some machines only in Chrome. We’ve been unable to track down a consistent reason for this and it only happens on some machines. It is frustrating but at this point we are trying to determine when it happens. It does not happen in Firefox so if possible can you use that browser? You can also try running through the steps outlined in this article https://support.google.com/chrome/thread/227608807/aw-snap-error-error-code-status-breakpoint?hl=en#:~:text=The%20STATUS_BREAKPOINT%20error%20is%20a,or%20corrupted%20version%20of%20Chrome.&text=A%20problem%20with%20one%20of%20your%20browser%20extensions
... View more
01-16-2024
10:26 AM
|
0
|
0
|
4683
|
|
POST
|
It's not a simple task using css only due to the fact that the filter is a component. It might be possible but it would be hacky and I haven't had time to dig into it yet.
... View more
01-16-2024
08:50 AM
|
0
|
0
|
3972
|
|
POST
|
Currently this is only available in Nearby. But after the next release of ArcGIS Online this will be available in Zone Lookup too. Here's the result you'd see where it displays the total result count then lets you either zoom in or view the first 500 results for each layer. Let me know if this won't work for your use case?
... View more
01-09-2024
03:19 PM
|
0
|
1
|
1709
|
|
POST
|
At the last release of ArcGIS Online we added logic to the Nearby app to limit the number of results returned and display a message when that limit is exceeded letting users know that there are more results in the area and they should search, filter etc to reduce the search area. We plan to add this to Lookup for the upcoming release. This wouldn't resolve your issue but it would let application users know that there were additional results in that area. Can you tell me more about your use case for displaying 8000+ results? Is it more about the count of results? Or do your users need to see the info for that many locations?
... View more
01-09-2024
02:07 PM
|
0
|
3
|
1722
|
|
POST
|
@Tiff it might be possible but I think you'd run into potential issues at each release updating to handle any possible css changes. Unless there is a compelling reason to move the buttons to the top I wouldn't recommend it.
... View more
01-09-2024
09:46 AM
|
0
|
5
|
6276
|
|
POST
|
Unfortunately I don't have a quick answer for this one. It requires learning about CSS (specificity, CSS variables and more). I think there is some work we could do on the app side for Public Notification that could make it a little easier to figure out. I'll work on that for later this year. But it still can get complex quickly. I think the MDN doc on CSS is a good place to start. Its also helpful to become familiar with dev tools to inspect the apps CSS. In Public Notification we can also get it to work with the example below. .App.calcite-mode-dark{
--calcite-ui-brand: #d6b9eb;
--calcite-ui-brand-hover: #c59cd6;
--calcite-ui-brand-press: #b399c4;
--calcite-ui-background: #3e3342;
--calcite-ui-foreground-1: #2e2933;
--calcite-ui-foreground-2: #2b262c;
--calcite-ui-foreground-3: #1b181b;
} What are you trying to change with the measurement widget? It currently has a styling issue in the Public Notification app that will be fixed in the next release. This is how it will look after the next release. One final note in regards to the custom CSS option is that we don't want people to have to use it. We'd like to continue to expose configuration options that will remove the need for people to resort to custom css for styling the app. In some apps we allow additional color customization and we can look at adding these options to Public Notification later this year.
... View more
01-05-2024
11:44 AM
|
0
|
0
|
2415
|
|
POST
|
For public notification try to scope the css to the public notification element. Here's an example showing how to do that. For the h1 css you have which header are you trying to modify. It looks like the header for a widget maybe? public-notification{
--calcite-ui-brand: #d6b9eb;
--calcite-ui-brand-hover: #c59cd6;
--calcite-ui-brand-press: #b399c4;
--calcite-ui-background: #3e3342;
--calcite-ui-foreground-1: #2e2933;
--calcite-ui-foreground-2: #2b262c;
--calcite-ui-foreground-3: #1b181b;
}
... View more
01-04-2024
09:20 AM
|
0
|
2
|
2426
|
|
POST
|
Can you provide an example of the css you are trying to use with Public Notification?
... View more
01-03-2024
09:25 AM
|
0
|
4
|
2444
|
|
POST
|
You can do something like this... the horrible colors are just an example and this would definitely need some additional work to make it look good. But also wanted to mention that the app as-is should pass WCAG 2.0 AA accessibility standards. Did you have violations of these accessibility standards reported? If so please pass them along so we can address the issues in the next release. .action-bar calcite-action{
--calcite-ui-foreground-1: yellow;
border: solid 1px green;
width:121px;
--calcite-ui-icon-color: green;
}
calcite-action.directions-button.left.calcite-mode-light.zoom-action:after {
color: green;
content: "Zoom To Feature";
background: yellow;
height: 100%;
width: 80px;
text-align: center;
}
... View more
12-27-2023
10:35 AM
|
1
|
7
|
6355
|
|
POST
|
That article is a good starting point. It can get confusing about what can be changed and what can't due to how some of the components of the app are created.
... View more
12-22-2023
11:48 AM
|
0
|
0
|
6393
|
|
POST
|
@Tiff this should get you what you need: #filterButton:hover, #filterButton:active, #filterButton:focus{
--calcite-ui-text-1:#fff;
}
... View more
12-22-2023
11:47 AM
|
0
|
9
|
6393
|
|
POST
|
Changing the button text is tricker and not sure we can do it with CSS in this particular scenario but if I think of a way to do it I'll post back here. The rest you can accomplish - here's an example: // This controls the font weight (bold) and size of the clear search
.clear-btn.esri-component{
--calcite-font-weight-normal:800;
--calcite-font-size--1:20px;
}
// This changes the background color and text color of the filter button
#filterButton{
background-color:#163c5e;
--calcite-ui-text-3:#fff;
}
// If you change the filter button background you might also want to change
// the text color when the button is hovered.
#filterButton:hover{
--calcite-ui-text-1:#fff;
}
... View more
12-22-2023
09:41 AM
|
0
|
13
|
6411
|
|
POST
|
I think it has to do with the length of the streets and the location where its searching for the nearest address. We calculate the distance from the address point to a center point on the line. I think we can revisit the code for finding the nearest point to a polyline and give better results in these cases. I'll look into this for the next release of ArcGIS Online.
... View more
12-21-2023
09:50 AM
|
0
|
1
|
1976
|
|
POST
|
Chelsea, You can try the following to reduce the amount of white space when no description is shown. .card-gc__details-container{
min-height:0;
}
... View more
12-21-2023
09:20 AM
|
1
|
1
|
3921
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 2 | 3 weeks ago | |
| 2 | 3 weeks ago | |
| 1 | 07-09-2026 08:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|