|
POST
|
Paul, The search widgets graphic is orange when the resultGraphicEnabled: true So the cyan color you are seeing is from the popup selection.
... View more
07-27-2020
07:25 AM
|
0
|
15
|
4272
|
|
POST
|
the hit test does not maintain anything that would need to be cleared so you must be holding onto something in your own code that is causing this issue.
... View more
07-25-2020
06:58 PM
|
2
|
1
|
1528
|
|
POST
|
Mason, Here is what I would use a function like this: function hideLayers(list, layernames){
var lis = query('li[aria-labelledby $= "__title"]', list.domNode);
lis.map(function(li){
layernames.map(function(label){
if(li.innerText === label){
domStyle.set(li, "display", "none");
}
});
});
} and call it like this: hideLayers(rList, ['1969 Imagery','1940 Imagery']);
... View more
07-25-2020
06:56 PM
|
0
|
0
|
2109
|
|
POST
|
3.x let poly = new Polygon(vertices); 4.x const polygon = new Polygon({
rings: vertices,
spatialReference: { wkid: 102100 }
});
... View more
07-25-2020
06:05 PM
|
1
|
1
|
2982
|
|
POST
|
Francisco, The JS API will not automatically convert a string that contains http or https to a hyperlink (and I am happy that it doesn't). You will have to manually add the html anchor tags to your code for that field.
... View more
07-25-2020
05:59 PM
|
0
|
0
|
2378
|
|
POST
|
Brent, Not that I am aware of. But my custom eSearch widget does allow this.
... View more
07-25-2020
05:52 PM
|
0
|
0
|
1094
|
|
POST
|
Nico, You can specify the layers in the widget using the layers property https://developers.arcgis.com/javascript/3/jsapi/layerlist-amd.html#layers
... View more
07-25-2020
05:45 PM
|
0
|
0
|
1921
|
|
DOC
|
David you want to look into this widgets exclusive mode then.
... View more
07-25-2020
05:43 PM
|
0
|
0
|
11679
|
|
POST
|
Thomas, CORs is a big subject and not something easily diagnosed in a chat like this. Best advice it Google and try several of the results.
... View more
07-25-2020
05:42 PM
|
1
|
0
|
3508
|
|
POST
|
Rahul, See this thread we someone asked basically the same question only her want to only draw on point at a time. https://community.esri.com/thread/249246-how-to-disable-multiple-pin-drips-per-session
... View more
07-17-2020
04:18 AM
|
0
|
0
|
865
|
|
POST
|
Is the actual string inside that field a url (a string containing http or https)? You can Not have a link with a local path or unc path and use it as a hyperlink directly.
... View more
07-17-2020
04:13 AM
|
0
|
0
|
2378
|
|
DOC
|
Gerald, So you should be able to tell form the errors that it is a path issue and it is not looking in the correct directory for the tinysoap js file. Try: require(['widgets/CustomWidgets/js/tinysoap/tinysoap-browser-min'], function(tinysoap){
... View more
07-16-2020
07:59 AM
|
0
|
0
|
18508
|
|
DOC
|
Gerald, As I mentioned this is not an area I have much experience in. But my guess based on the errors and their order is that the tinysoap is getting initialized before jQuery is ready (once again juts a guess). So I would add a require inside the startup for the tinysoap so hopefully by that time jQuery is ready. define(['dojo/_base/decalre', 'jimu/Basewidget',
'jimu/loaderplugins/jquery-loader!https://code.jquery.com/jquery-git1.min.js'
], function(declare, BaseWidget, $){
return declare(BaseWidget, {
startup: function(){
require(['js/tinysoap/tinysoap-browser-min'], function(tinysoap){
console.log('tinysoap: ', tinysoap);
});
}
});
});
... View more
07-16-2020
05:44 AM
|
0
|
0
|
18508
|
|
POST
|
Currently I am not a React developer so I have not made any plans yet.
... View more
07-15-2020
11:02 AM
|
0
|
0
|
4292
|
|
POST
|
That making WAB 2D use the 3.x API would basically be a near complete rewrite. They will not invest in that. EB is the new product but it is in it's infancy just like WAB as years ago. Best advice is, be patient.
... View more
07-15-2020
09:39 AM
|
0
|
0
|
2098
|
| 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
|