|
DOC
|
Robert, I removed the layer completely and re-added it and them seemed do the trick. I however did notice another little bug. My Auto zoom to search results is not working. When I do a search the map stays at the current extent, even when there is only one result. I deleted the widget completely in the client apps folder and put a fresh copy of it back in there and reconfigured the app and it still doesn't do it.
... View more
07-10-2017
12:56 PM
|
0
|
0
|
6812
|
|
DOC
|
Robert, I didn't import or copy any configs settings from 1.2 into 2.4, I completely re-set it up just using the same parameters in WAB thru the widget config window. I even removed the expression and re-added it. Maybe i can try removing the layer completely and re-adding it.
... View more
07-07-2017
01:42 PM
|
0
|
0
|
6812
|
|
DOC
|
Robert Attached is a screen shot of the console. I used firefox and chrome and got similar results. I did one search using the party name which is a second search expression in the same layer, one with a working parcel id search and one with the "no results" on a parcel ID search using 8909.
... View more
07-07-2017
12:29 PM
|
0
|
0
|
6812
|
|
DOC
|
I am having an weird issued on one of my search expressions using the eSearch v2.4 and WAB 2.4. . I am trying to search by Parcel ID that is a 9 digit number inside a text field for example 010008909. The problem I am having it is not searching numbers after the 6 digit spot. So If I search 0100 or 1000 or 000 I get results but if I search 8909 or 10008 I get no results. I am using the exact same service with a WAB 1.1 and eSearch v1.2.0.5 with no issues. Looking at the code configuration for this search also looks the same. I also have a Party Name search set within the same layer and this appears to be functioning correctly. V2.4 "alias": "Parcel Number", "textsearchlabel": "Search by Parcel Number", "values": { "value": [ { "fieldObj": { "name": "PID", "label": "PID", "shortType": "string", "type": "esriFieldTypeString" }, "valueObj": { "value": "" }, "prompt": "PID contains", "textsearchhint": "010008909", "sqltext": "Upper(PID) LIKE Upper('%[value]%')", "operation": "stringOperatorContains" v1.2 "alias": "Parcel Number", "textsearchlabel": "Search by Parcel Number", "values": { "value": [ { "fieldObj": { "name": "PID", "label": "PID", "shortType": "string", "type": "esriFieldTypeString" }, "valueObj": { "value": "" }, "prompt": "Parcel ID contains", "textsearchhint": "010008909", "sqltext": "Upper(PID) LIKE Upper('%[value]%')", "operation": "stringOperatorContains"
... View more
07-07-2017
08:37 AM
|
0
|
0
|
6812
|
|
POST
|
Thanks Robert, That seemed to do the trick. I also found the same spot in the identify widget to change it. Because if I selected the identify widget it was still yellow and then the Draw widget would go back to yellow.
... View more
07-05-2017
12:12 PM
|
0
|
2
|
2589
|
|
POST
|
I am using WAB 2.4 and was very excited to see the Set Custom color in the styles. However what I have noticed is when you set your color it changes the apps title bar along with all of your widgets title bars but the buttons within the widgets stay the original color that was predefined, unlike the other color styles it changes the headers and the buttons. What .css changes the color of hover and selection in the widget buttons so it all matches, I'm having a hard time finding the location of where this color is being saved. Custom Color Selected the title bars all changed, but the Search button on the widget is orange and the selected measure tool is orange. With a pre-loaded color, the tittle bar all change along with all the buttons.
... View more
06-28-2017
07:20 AM
|
0
|
4
|
3884
|
|
POST
|
Robert, I tried your naming of the same thing in your above suggestion. I then get it to to show my loaded map at the top of the widget instead of the blank map. However this displays my service name. I want to change the name that is displayed. When I change the Title in the Widget configuration it automatically puts the blank icon at the top of the widget. Is there a way to change that title and not have that blank icon on the first loading of the site? This way it displays a name that I can have make sense for the users and not for my services. With default name After I change the Title
... View more
01-26-2016
11:15 AM
|
0
|
2
|
2128
|
|
DOC
|
Robert, I am trying to implement your Enhanced Basemap widget v1.3 onto my map (using WAB 1.2) and I'm running into two issues. Issue number 1 the Thumbnail pictures are not displaying. They display in the development window of WAB but not when I launch the site to test it or when I download it to my server. The default Basemap Gallery does display it without issue and the location URLs for the images in the config files look exactly the same to me between the default basemap gallery and your enhanced basemap gallery. Issue 2 is: is when I first open my map and open the widget it shows the selected map as a blank map with no label. Then under available maps it shows two basemaps. When it fact one of these two basemaps is my selected map. So it appears that there is 3 basemaps in all, when I only have two. When I select any of the two available basemaps then that 3rd option disappears. Now I am only showing two basemaps. Is this how the widget was programmed or do I have some kind of issue? Here is a link to the map ArcGIS Web Application so you can see what I am talking about regarding the thumbnails and how the widget is displaying my maps. The default basemap set up in my web map using portal is the Street Basemap.
... View more
01-25-2016
08:42 AM
|
0
|
0
|
23113
|
|
POST
|
I didn't know what the exact code was for that search button. That worked great! Thanks Robert!
... View more
12-18-2015
01:28 PM
|
0
|
0
|
2797
|
|
POST
|
I did the same thing and my widget container widgets and popup stayed the original color. Using your provided code in this thread it changed both headers, but what about the buttons??
... View more
12-18-2015
11:38 AM
|
0
|
2
|
2797
|
|
POST
|
Does anyone know if this special coding to change the icon transparency for the widgets on the map for the 1.2 app builder. I had the below code working for WAB 1.1 version but it will not work in the 1.2 WAB version. /* My Theme Style Adds */ .jimu-preload-widget-icon { position: absolute; cursor: pointer; border-radius: 4px; background-color: rgb(90, 107, 77); -ms-filter: "Alpha(opacity=20)"; background-color: rgba(90, 107, 77, 0.2); } .jimu-preload-widget-icon.jimu-state-selected { background-color: rgb(90, 107, 77); -ms-filter: "Alpha(opacity=80)"; background-color: rgba(90, 107, 77, 0.8); } .jimu-preload-widget-icon:hover{ background-color: rgb(90, 107, 77); -ms-filter: "Alpha(opacity=40)"; background-color: rgba(90, 107, 77, 0.4); }
... View more
11-13-2015
07:13 AM
|
0
|
1
|
3017
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a month ago | |
| 1 | 03-20-2025 12:40 PM | |
| 2 | 10-24-2025 07:26 AM | |
| 2 | 06-10-2025 09:37 AM | |
| 1 | 05-13-2025 08:38 AM |
| Online Status |
Online
|
| Date Last Visited |
yesterday
|