|
POST
|
Michael, The standard way you do with the JS API. https://developers.arcgis.com/javascript/latest/api-reference/esri-layers-FeatureLayer.html#applyEdits
... View more
12-21-2020
05:29 AM
|
0
|
1
|
1557
|
|
POST
|
James, Here is a thread where I provide the answer to your question. https://community.esri.com/t5/arcgis-web-appbuilder-questions/how-to-change-wab-widget-window-size/m-p/285094/highlight/true#M7567
... View more
12-18-2020
11:15 AM
|
1
|
1
|
974
|
|
POST
|
Karina, Sorry I have never had this issue myself. You may want to contact esri tech support.
... View more
12-18-2020
10:19 AM
|
0
|
1
|
3550
|
|
DOC
|
Matt 1. The strings that can not be found in the nls/strings.js file are going to be part of the JS API then. Here is a thread where I explain how to change strings in the popup that come from the JS API: https://community.esri.com/t5/arcgis-web-appbuilder-questions/web-appbuilder-popup-nls/td-p/17796 2. See the answer to this here: https://community.esri.com/t5/web-appbuilder-custom-widgets/enhanced-search-widget-version-2-17-12-11-20/tac-p/913437/highlight/true#M4499
... View more
12-18-2020
10:16 AM
|
0
|
0
|
23381
|
|
POST
|
Xuan, You will need to start using function based programming methods and not in line code, like you are now. The code that needs to access the flag var needs to be called from the executeForCount handler. So normally I would put any code that needs access to a async process result inside its own function that is only called inside the result of the async promise result function.
... View more
12-18-2020
05:29 AM
|
0
|
0
|
2196
|
|
POST
|
Alex, The Map Progress Widget is still a widget thus should have the same issue mentioned earlier. The only way to achieve what you are after is to do custom coding in one of the manger.js files to show so loading or what ever div that you would add to the main dom for the app.
... View more
12-18-2020
05:24 AM
|
0
|
0
|
3352
|
|
POST
|
The answer is pretty simple you are logging the value of flag var before the aSync process is complete. var flag = 0;
queryTask.executeForCount(query, lang.hitch(this, function(count) {
if(count > 0) {
flag = 1; // Suppose this one fires instead of flag = 0
} else {
flag = 0;
}
}));
// this line is executed before the executeForCount method returns
console.log(flag); // Still returns 0, I want it to return 1 What you would need is something like this: var flag = 0;
queryTask.executeForCount(query, lang.hitch(this, function(count) {
if(count > 0) {
flag = 1; // Suppose this one fires instead of flag = 0
} else {
flag = 0;
}
console.log(flag);
}));
... View more
12-17-2020
06:56 AM
|
0
|
2
|
2212
|
|
POST
|
Alex, The Splash Screen is a Widget to in the lifecycle of the WAB app the widgetmanger and then individual widgets have to be loaded and all that happens after the Map because many widgets are dependent on the map. So short answer is that's not possible.
... View more
12-17-2020
05:28 AM
|
0
|
1
|
3368
|
|
POST
|
Hunter, This is not possible without custom code in the application.
... View more
12-15-2020
02:36 PM
|
0
|
0
|
755
|
|
POST
|
Mark, That is not currently possible. Doesn't sound much different than using feature popups if I were to add this ability...
... View more
12-15-2020
02:34 PM
|
0
|
1
|
2266
|
|
POST
|
Laurynas, There are many thing wrong with that widget download you sent me. You should be using the one I fixed on the thread that is marked as the solution to this question.
... View more
12-14-2020
11:12 AM
|
0
|
0
|
1627
|
|
POST
|
It appears you have missed something in your code I would have to see your Widget.js
... View more
12-14-2020
10:12 AM
|
0
|
2
|
4933
|
|
POST
|
Bing, Just set minScale and maxScale properties on the layer, there is no need to mess with the maps LODs
... View more
12-14-2020
10:09 AM
|
0
|
1
|
2149
|
|
POST
|
OK, so you were referring to my solution to this question and not the deploy WAB app link. So step 8 is your machines name (like I mention is that step) http://yourMachineName/ and the wab application virtual folder from step 2. Step 9. is only if you are going to use the esri resource proxy and that url would be http://yourMachineName/ and the virtual folder you placed your esri proxy app in.
... View more
12-11-2020
08:34 AM
|
0
|
1
|
3632
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 04-14-2020 11:36 AM | |
| 17 | 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
|