|
POST
|
I am working on a custom search widget using the Search widget with multiple sources ArcGIS Maps SDK for JavaScript reference. The widget is working as expected. I have a bug that keeps persisting where the results list scroll navigation bar keeps an transparent background, where instead I would like it to have a white background. Below my image I have included the CSS style const used to style the widget. It is hard to see in the image but the scroll bar to the right has a transparent fill. const STYLE = css`
& {
height: ${polished.rem(32)};
margin-top: 0;
margin-left: 0;
}
&.search-container {
width: 300px !important;
}
/* Ensure the search sources menu has a solid background */
.esri-search__sources-menu {
background-color: #ffffff !important;
border: 1px solid #dcdcdc;
border-radius: 4px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
overflow: auto !important;
}
/* Ensure individual list items have correct background */
.esri-menu__list {
background-color: #ffffff !important;
}
/* Ensure scrollbar is fully visible */
.esri-search__sources-menu::-webkit-scrollbar {
width: 10px;
background-color: #f0f0f0 !important;
border-radius: 4px;
}
.esri-search__sources-menu::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.4) !important;
border-radius: 4px;
}
/* Firefox scrollbar (optional) */
.esri-search__sources-menu {
scrollbar-color: rgba(0, 0, 0, 0.4) #f0f0f0 !important;
scrollbar-width: thin !important;
}
/* **Selected state (when a user selects an option)** */
.esri-menu__list-item[aria-checked="true"],
.esri-menu__list-item--active {
background-color: #003A55 !important;
color: #ffffff !important;
font-weight: bold;
}
/* **Hover state (when a user hovers over an option before selecting)** */
.esri-menu__list-item:hover,
.esri-menu__list-item:focus {
background-color: #003A55 !important;
color: #ffffff !important;
}
`;
... View more
02-21-2025
09:35 AM
|
0
|
4
|
1221
|
|
POST
|
Thank you, @Edward_Wong. I ended up going with your second recommendation below and the animation is now disabled. Thank you for the input. jimuMapView.view.goTo(item.extent, { animate: false });
... View more
02-20-2025
08:28 AM
|
0
|
0
|
1584
|
|
IDEA
|
In ArcGIS Web AppBuilder (WAB), the Draw Tool allowed users to create both lines and polylines as separate geometry types. However, in ArcGIS Experience Builder (EB), the Draw Tool only supports polylines, removing the option to create a simple line segment. This limits workflows where a single straight line is needed instead of a multi-segment polyline. WAB EB
... View more
02-18-2025
09:45 AM
|
1
|
0
|
271
|
|
IDEA
|
@LindseyStone, this worked for me 1.15 DE but not 1.16 DE. I had to update the code, but there is loss of functionality in the Map Layers widget I am currently using. Map Actions do not work (increase transparency, decrease transparency, etc.) Legend does not show I can give you the code that shows the group layers expanded by default and will expand/collapse group layers when you check the tick box on or off. However, with the lack of functionality of other functions it may take away more than it provides for you. If Esri would allow to expand group layers by default and collapse/expand when a tick box is checked that would resolve most of my map layers widget issues.
... View more
02-14-2025
10:11 AM
|
0
|
0
|
2404
|
|
POST
|
From my interpretation of the TOS you can you can provide hyperlinks to Google Maps from a popup, attribute table, etc. to Google Maps which this widget does by passing coordinates in the URL.
... View more
02-13-2025
10:59 AM
|
1
|
0
|
1791
|
|
POST
|
Thank you @JeffreyThompson2, I will look into copying the widget. I was hoping to use the out of the box widget but may not be feasible.
... View more
02-13-2025
08:32 AM
|
0
|
0
|
1652
|
|
POST
|
In our search widget, we have it configured so the initial search will zoom to the feature. The request from a user has come in to disable the zoom out / zoom in animation when searching for subsequent features in the search widget (as the video shows). Below are my current settings in the search widget actions settings. When a record selection changes, it zooms to it which would explain the behavior. However, there is not a "pan to" option. Would anyone have any insight as to how to get the initial search to zoom to, but subsequent to just go to the feature without any animation?
... View more
02-13-2025
07:40 AM
|
0
|
4
|
1679
|
|
IDEA
|
This function is in the WAB draw widget and we have users asking for it in the EB widget as they can no longer perform their workflows.
... View more
02-05-2025
08:47 AM
|
0
|
0
|
3748
|
|
IDEA
|
In the print widget, add an option to set map extent for the print rectangle. This would allow the user to draw a rectangle on the map from the print widget which would define the print extent.
... View more
02-05-2025
08:41 AM
|
5
|
0
|
476
|
|
POST
|
@Clubdebambos thank you for the feedback, I will review this over the next few weeks and let you know if I have any luck. After I made this post, I made a support case and Esri noted that it is not a functionality yet in the Python API for Arcade elements but may be in the future.
... View more
02-04-2025
07:21 AM
|
0
|
0
|
969
|
|
POST
|
Does the geoprocessing tool use a database connection or the published UN service? In the past, I had to stop all published UN services to avoid a lock and use the DB connection with admin credentials.
... View more
01-24-2025
08:40 AM
|
0
|
1
|
1020
|
|
POST
|
Update on this after a support case with Esri. It is a bug and logged as BUG-000173776. The alternate solution is to: "Under the Table widget configuration options, choose Select Layers instead of Interact with a Map widget."
... View more
01-22-2025
03:21 PM
|
0
|
0
|
1311
|
|
BLOG
|
Thank you @Jianxia. In the Map Layers widget updates, is the request from this community post being addressed? https://community.esri.com/t5/arcgis-experience-builder-ideas/expand-grouped-layers-by-default/idc-p/1573529#M3487
... View more
01-22-2025
08:21 AM
|
0
|
0
|
19969
|
|
IDEA
|
Hello @Wei_Ying, thank you for looking into this. Thank you for the CTRL tip, it did work to disable the snapping!
... View more
01-17-2025
07:21 AM
|
0
|
0
|
2435
|
|
POST
|
I might have had this issue a while back and had to convert the CSV to an XLSX format due to a record number limitation. It might be worth trying to change the file format.
... View more
01-14-2025
12:47 PM
|
1
|
1
|
2108
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Friday | |
| 1 | Thursday | |
| 1 | Thursday | |
| 2 | 2 weeks ago | |
| 1 | 2 weeks ago |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|