|
POST
|
@GregHorne I am not a Portal so I can only advise how things work with WAB Developer. In WAB Dev when you update a widget to a new version you replace overwrite the client/stemapp/widgets/eSearch folder with the new code and this updates all NEW apps produced. To Update an existing apps widgets you have to update the server/Apps/[App#]/widgets/eSearch folder. The fact that you are getting the same error still is telling me that you are not getting the updated code in the app you are testing for some reason.
... View more
07-12-2021
08:15 AM
|
0
|
1
|
890
|
|
POST
|
@GregHorne , If you have the right version then in the Widget.js file of the eSearch widget lines 830 - 832 will look like this: _removeSelectionGraphics: function () {
this.selectionGL && this.selectionGL.clear();
},
... View more
07-09-2021
07:33 AM
|
0
|
3
|
4210
|
|
POST
|
So if you look at the source tab and search for WidgetManager.js file (after loading your WAB app) you will see "WidgetManager.js?wab_dv=2.20" so the easy way to manage no caching is to change the "deployVersion = '2.20';" in the env.js file each time you make some code changes. For example deployVersion = '2.20.070921';
... View more
07-09-2021
07:01 AM
|
1
|
2
|
3713
|
|
POST
|
In the index.html file there are script tags that call the init.js file that loads most of the WAB js files.
... View more
07-09-2021
06:35 AM
|
1
|
0
|
3722
|
|
POST
|
That js file is loader inside the configLoader.js, configManager.js, main.js, etc files. There is not a script tag that loads it.
... View more
07-09-2021
06:29 AM
|
1
|
6
|
3736
|
|
POST
|
@GregHorne No your issue is very different. She is saying that the eSearch widget never appears in the choose widget list. You can fix your issue by grabbing the latest 2.17 version I just published 7/9/21.
... View more
07-09-2021
05:59 AM
|
0
|
5
|
4213
|
|
POST
|
@MattiasEkström After you have set the geoTypes in code then you just have to call the _initTypes() method on the drawBox.
... View more
07-08-2021
07:15 AM
|
1
|
1
|
1606
|
|
POST
|
@ChitraKrishnan I am not sure why you are trying to execute the esriRequest... You have your QueryTask in Set1 that is returning the intersected track blocks based on the user click. So why attempt to query the same REST endpoint again using a esriRequest?
... View more
07-08-2021
07:08 AM
|
0
|
4
|
6033
|
|
POST
|
@ChitraKrishnan So the error mentioned that it is attempting to use a proxy. Do you have a proxy setup on your web server at the address of this app? If so have you added the tigerweb.geo.census.gov url to your proxy.config?
... View more
07-07-2021
07:16 AM
|
0
|
0
|
6054
|
|
POST
|
@ShannonSmith What version of WAB are you using and what version of the eSearch did you grab?
... View more
07-07-2021
05:08 AM
|
0
|
1
|
4232
|
|
POST
|
@KafilBaig, "As per my understanding it is the click event on the map which performs the infowindow visibility." Actually No. There is not a map click event that you will find in the code. It is actually built in to the JS API itself. When a map layer has a popupTemplate defined then the API internally handles the map click event.
... View more
07-06-2021
08:57 AM
|
0
|
0
|
1046
|
|
IDEA
|
@HaitingHuang If you are using ExB Developer then you can use the measurement custom widget that I made for this: https://community.esri.com/t5/experience-builder-custom/measurement-widget-eb-1-4/ta-p/1062509
... View more
06-30-2021
01:56 PM
|
0
|
0
|
4281
|
|
POST
|
@KarstenRank Get the layers view and execute the queryExtent on the layers view. https://developers.arcgis.com/javascript/latest/api-reference/esri-views-layers-FeatureLayerView.html#queryExtent
... View more
06-30-2021
11:35 AM
|
0
|
0
|
1114
|
|
POST
|
@KarenRobine1 You should be careful about using code that has been depreciated. 'dojo/_base/connect' is one of those that has been depreciated for many years. If you are still using it then you really need to update your code to use dojo/on.
... View more
06-30-2021
09:17 AM
|
0
|
1
|
2851
|
|
POST
|
OK, so what you want to do then is to add a PopupTemplate to your graphic then. Some code like this and your custom code/widget will use the Popup Panel widget instead: //define a popup template
var popupTemplate = new PopupTemplate({
title: "{title}",
description: "{description}"
});
var graphic = new Graphic(point,symbol,null,popupTemplate);
this.map.infoWindow.setFeatures([graphic]);this.map.infoWindow.show(point);
... View more
06-30-2021
09:14 AM
|
1
|
0
|
2851
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2020 11:36 AM | |
| 16 | 05-17-2021 01:51 PM | |
| 1 | 07-06-2020 05:32 AM | |
| 1 | 07-10-2018 05:49 AM | |
| 9 | 01-28-2022 10:58 AM |
| Online Status |
Offline
|
| Date Last Visited |
06-08-2026
06:27 AM
|