|
POST
|
Would changing this to True change the results at all?
... View more
03-25-2025
09:23 AM
|
0
|
0
|
3827
|
|
POST
|
Update on 3/24/25: I have added the function to disable pop-ups and feature highlights for when the widget is in use. The ZIP file at the top of this thread has been updated.
... View more
03-24-2025
02:56 PM
|
0
|
10
|
2567
|
|
POST
|
@Jonathan_Marin plugging this post to get it upvoted so hopefully released in EB in a future release. Implement export, import and sharing of sketches o... - Esri Community
... View more
03-14-2025
08:04 AM
|
1
|
0
|
1776
|
|
POST
|
@JeffreyThompson2 has been maintaining a list at this page below as a starting point. A List of Custom Widgets
... View more
03-12-2025
02:18 PM
|
1
|
1
|
4529
|
|
IDEA
|
This comes from this post in the Questions board. Allow for users to change properties of shapes or text in already drawn items within the draw widget.
... View more
03-06-2025
03:48 PM
|
1
|
4
|
951
|
|
IDEA
|
The measurement widget in the AGOL and DE of EB does not have tooltips when you hover over the buttons within the widget. This functionality is in other widgets like the draw tool. This could be an accessibility issue that needs addressed fairly soon. Measurement: Draw:
... View more
03-06-2025
03:45 PM
|
1
|
2
|
808
|
|
IDEA
|
@LindseyStone I had to do a few steps of manipulation, I had to hardcode in layers to hide from showing in the layers list. Ultimately lines 247-252 and 402-406 perform the function. The code that I modified broke the actions however, such as export data, decrease transparency, etc. It broke it so that only the top layer of the group layer will perform the action, even if you select the action on a layer further down the list. Ultimately the result was to have the parent layer expanded by default but some functionality was lost. My preference is hopefully in a couple of versions of EB DE I can go back to the out of the box widget. Update on 4/2/25: No longer maintaining this 1.15 widget due to improvements below for 1.17
... View more
03-06-2025
12:15 PM
|
0
|
0
|
2863
|
|
IDEA
|
I have the same situation that @MattiasEkström and @LindseyStone are wanting to have implemented. I copied the out of the box widget and customized it to have the parent group layer expanded by default, but group layers within collapsed. Having this functionality out of the box would be much easier to maintain.
... View more
03-06-2025
07:18 AM
|
0
|
0
|
2895
|
|
IDEA
|
@AKRRMapGuy there is still not a front end way to view through ArcGIS Pro, but in Microsoft SQL Server you can run the query below to get a list of database sequences created on your DB. SELECT *
FROM sys.sequences;
... View more
03-03-2025
10:13 AM
|
0
|
0
|
2299
|
|
IDEA
|
In the AGOL February 2025 EB update, the share widget logo for Twitter has been updated to X. However, the text when you hover over the X logo says Twitter. Also, Twitter needs updated to X in the Share options of the configuration settings.
... View more
02-28-2025
01:03 PM
|
0
|
1
|
634
|
|
BLOG
|
Thank you for creating this @JeffreyThompson2, while not my own below are two Community Posts that look to have requests for new widgets. Zone Lookup Widget Public Notification Widget
... View more
02-28-2025
12:08 PM
|
1
|
0
|
5155
|
|
POST
|
@nafizpervez I was able to get the CSS to work with the below update. The results list scroll bar background is no longer transparent. Thank you for your help with this. const STYLE = css`
& {
height: ${polished.rem(32)};
margin-top: 0;
margin-left: 0;
}
&.search-container {
width: 300px !important;
background-color: #ffffff !important;
position: relative !important;
display: block !important;
z-index: 1000 !important;
}
/* Ensure dropdown stays visible and inside widget */
.esri-search__sources-menu {
background-color: #ffffff !important;
border: 1px solid #dcdcdc !important;
border-radius: 4px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2) !important;
overflow-y: auto !important;
max-height: 250px !important;
width: 100% !important;
position: absolute !important;
top: 100% !important;
left: 0 !important;
z-index: 9999 !important;
display: block !important;
}
/* Force solid background on results list */
.esri-menu__list {
background-color: #ffffff !important;
position: relative !important;
z-index: 9999 !important;
display: block !important;
}
/* Fix blocky hover issue by removing unwanted highlight effects */
.esri-menu__list-item {
background-color: #ffffff !important;
border-bottom: 1px solid #dcdcdc !important;
display: block !important; /* Ensures proper alignment */
text-align: left !important; /* Keeps all text left-aligned */
padding: 8px 12px !important; /* Ensure even spacing */
transition: none !important; /* Remove delay for instant hover */
box-shadow: none !important;
/* Ensure proper word wrapping and space handling */
white-space: pre-wrap !important; /* Preserves spaces and wraps naturally */
word-break: normal !important; /* Prevents breaking words mid-way */
overflow: visible !important;
text-overflow: clip !important;
text-transform: none !important;
letter-spacing: normal !important;
font-weight: normal !important;
}
/* Preserve spaces in search keywords */
.esri-menu__list-item strong {
white-space: pre-wrap !important; /* Ensures spaces are kept as in GIS */
word-break: normal !important; /* Prevents breaking words mid-way */
display: inline !important;
text-align: left !important;
}
/* Ensure second and third lines do not indent after the keyword */
.esri-menu__list-item span {
display: block !important; /* Forces text to appear as a block */
white-space: pre-wrap !important;
word-break: normal !important;
text-align: left !important;
margin-left: 0 !important; /* Prevents indentation */
padding-left: 0 !important;
}
/* Ensure text flows naturally within the container */
.esri-menu__list-item * {
background-color: transparent !important;
box-shadow: none !important;
white-space: pre-wrap !important;
word-break: normal !important;
display: block !important; /* Forces proper alignment */
text-align: left !important;
text-overflow: clip !important;
}
/* Instant hover effect with no delay */
.esri-menu__list-item:hover,
.esri-menu__list-item:focus {
background-color: rgba(0, 58, 85, 1) !important; /* Smooth dark hover effect */
color: #ffffff !important;
transition: none !important; /* Remove any delay */
box-shadow: none !important;
}
/* Remove any extra background layers causing artifacts */
.esri-menu__list-item:hover::before,
.esri-menu__list-item:focus::before,
.esri-menu__list-item::before,
.esri-menu__list-item::after {
background: none !important;
display: none !important;
box-shadow: none !important;
}
/* Fix scrollbar transparency issue */
.esri-search__sources-menu::-webkit-scrollbar,
.esri-menu::-webkit-scrollbar,
.esri-menu__list::-webkit-scrollbar {
width: 10px !important;
background-color: #ffffff !important;
border: none !important;
}
.esri-search__sources-menu::-webkit-scrollbar-track,
.esri-menu::-webkit-scrollbar-track,
.esri-menu__list::-webkit-scrollbar-track {
background: #ffffff !important; /* White scrollbar track */
border-radius: 4px !important;
box-shadow: inset 0 0 0 2px #ffffff, inset 0 0 0 3px rgba(0, 0, 0, 0.2) !important;
border: none !important;
}
.esri-search__sources-menu::-webkit-scrollbar-thumb,
.esri-menu::-webkit-scrollbar-thumb,
.esri-menu__list::-webkit-scrollbar-thumb {
background: rgba(0, 0, 0, 0.4) !important; /* Dark scrollbar thumb */
border-radius: 4px !important;
border: 2px solid #ffffff !important;
}
/* Enhanced Firefox scrollbar fix */
.esri-search__sources-menu,
.esri-menu,
.esri-menu__list,
.esri-search__sources-menu * {
scrollbar-color: rgba(0, 0, 0, 0.4) #ffffff !important;
scrollbar-width: thin !important;
background-color: #ffffff !important; /* Full white background */
}
/* Target all possible parent containers */
.esri-search__container,
.esri-search,
.esri-view,
.esri-view-root,
.esri-ui,
.esri-component {
background-color: #ffffff !important;
}
/* Override any transparent backgrounds in the menu */
.esri-menu__list::before,
.esri-menu__list::after,
.esri-menu::before,
.esri-menu::after,
.esri-search__sources-menu::before,
.esri-search__sources-menu::after {
background: #ffffff !important;
content: '' !important;
display: block !important;
position: absolute !important;
top: 0 !important;
left: 0 !important;
width: 100% !important;
height: 100% !important;
z-index: -1 !important;
}
/* Fix header (All button) */
.esri-menu__header {
background: #003A55 !important;
color: #ffffff !important;
font-weight: bold;
padding: 10px;
text-align: center;
}
/* Ensure text in results wraps correctly */
.esri-menu__list-item {
white-space: pre-wrap !important; /* Ensures text wraps while keeping spaces */
overflow: visible !important;
text-overflow: clip !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;
}
`;
... View more
02-28-2025
09:50 AM
|
2
|
1
|
1310
|
|
IDEA
|
@Thomas1, the import/export sketches (JSON files) has been one of the most requested features to implement that are in WAB but not in EB for my users. Hopefully this can be added in the next release of EB. The development team is making good strides towards the functionality with this release of EB for the Draw widget, so hopefully they keep up the momentum.
... View more
02-28-2025
08:25 AM
|
0
|
0
|
3103
|
|
IDEA
|
Add an option to the configuration settings to expand/collapse the layers automatically when a group layer is turned on or off using the "eye" or tick box option within layer visibility. When tick box or eye is turned on, group layer expands by default. When turned off, group layer collapses by default.
... View more
02-27-2025
03:42 PM
|
3
|
0
|
442
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | Tuesday | |
| 1 | Tuesday | |
| 2 | a week ago | |
| 2 | a week ago |
| Online Status |
Online
|
| Date Last Visited |
29 seconds ago
|