|
POST
|
view.popup.open({
location: somePointObject, // location
fetchFeatures: true // display the content for the selected feature if a popupTemplate is defined.
});
... View more
01-25-2022
02:28 PM
|
0
|
0
|
2134
|
|
POST
|
@ToddFagin Maybe this will get you going. (Written for 4.x) searchWidget.on('select-result', function(evt){
let query = sections.createQuery();
query.geometry = evt.result.feature.geometry;
query.spatialRelationship = 'within';
query.outFields = ['*'];
query.returnGeometry = true;
query.outSpatialReference = view.spatialReference;
query.maxAllowableOffset = 0;
sections.queryFeatures(query).then(function(result){
view.popup.open({
features: result.features,
location: result.features[0].geometry.centroid
});
});
});
... View more
01-24-2022
06:00 AM
|
2
|
4
|
5839
|
|
DOC
|
@DavidColey Unfortunately that seems to be a print service issue and not a widget issue. Which print service url are you using?
... View more
01-21-2022
07:07 AM
|
0
|
0
|
23995
|
|
POST
|
@LanceCole So if that css query is not working then you have to find out what are the classes applied to your apps subtitle. To do that you can right click on the apps subtitle and choose inspect. It will look something like this: <h2 class="jimu-subtitle jimu-float-leading jimu-leading-margin5" data-dojo-attach-point="subtitleNode" id="jimuUniqName_3a452e20_256f_8d5f_03c5_14ade087e765_2" style="line-height: 40px; display: block;">with ArcGIS Web AppBuilder</h2> Notice class="jimu-subtitle jimu-float-leading jimu-leading-margin5" So in my case above this code would work: var appSubTitleNode = query('.jimu-subtitle.jimu-float-leading')[0];
... View more
01-21-2022
07:02 AM
|
1
|
2
|
1461
|
|
POST
|
@PanGIS Sorry I do not know if that is possible or not.
... View more
01-12-2022
07:56 AM
|
1
|
0
|
5351
|
|
POST
|
@JoshWhite WAB still have a couple of years. I am still using WAB as my main site I have a EB site that I am testing but am still not happy with it yet. No need to be in a hurry.
... View more
01-10-2022
06:33 AM
|
2
|
0
|
5018
|
|
POST
|
@JoshWhite Nope custom widgets require developer edition.
... View more
01-10-2022
06:12 AM
|
0
|
2
|
5022
|
|
BLOG
|
@BingJing Yes they are both on my list, but not set schedule yet.
... View more
12-29-2021
06:28 AM
|
2
|
0
|
6821
|
|
POST
|
@JanHellenberg Have you seen the new enhancement to geojson layer in 4.22? I think this will do what you are looking for. https://developers.arcgis.com/javascript/latest/release-notes/#layer-updates
... View more
12-13-2021
09:08 AM
|
0
|
0
|
2143
|
|
POST
|
@AndyGup Unfortunately your example url seems to be a non-public url.
... View more
12-07-2021
01:19 PM
|
0
|
0
|
1780
|
|
POST
|
Print Widget has now been updated for EB 1.6. This update requires you to have the EB 1.6 patch installed as detailed here: https://github.com/Esri/arcgis-experience-builder-sdk-resources/tree/master/patches/1.6/patch1/arcgis-experience-builder
... View more
12-07-2021
10:06 AM
|
0
|
0
|
3715
|
|
POST
|
@cw_mund There are breaking changes as @Kishore mentioned in EB 1.6 the main one is the way modules are imported. You can make the changes that Kishore mentioned or wait and I will be releasing a 1.6 version of the Print widget hopefully Today.
... View more
12-07-2021
05:29 AM
|
0
|
0
|
3729
|
|
DOC
|
@PriscillaThoopthong No it should not. Seems like I remember on other person have an issue like this and the issue had to do with some bad geometry in their service they were searching. Sorry that was a long time ago so I don't recall much of the details.
... View more
12-06-2021
10:17 AM
|
0
|
0
|
17309
|
|
DOC
|
@PriscillaThoopthong An extent is applied to the point graphical search based on how the widget is configured. If you do not want the point to have a search tolerance added to it then uncheck the "Add search tolerance to point selection" on the widget.
... View more
12-06-2021
09:00 AM
|
0
|
0
|
17326
|
| Title | Kudos | Posted |
|---|---|---|
| 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 | |
| 1 | 03-28-2022 06:20 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|