|
POST
|
Right now I have a refresh interval set on my feature service in my WAB app. When a popup is open and the refresh occurs, the data in the popup isnt refreshed. To properly refresh the popup I need to close the popup and open it again. Is there a way to have the popup update on the refresh interval (even if the popup is open)? Thanks
... View more
01-03-2020
06:31 AM
|
0
|
3
|
1408
|
|
POST
|
No I'm referring to the Hover widget. Can be found here: https://community.esri.com/docs/DOC-13431-feature-layer-hover-widget-version-212-090519
... View more
12-23-2019
01:31 PM
|
0
|
2
|
1267
|
|
POST
|
Hi all, Hoping you can help me fill in a functionality gap. I need my indicators to be selectable in the sense a user can click on them and be show a list for the category. For example say I have a indicator representing outstanding hydrant inspections for a particular person. I want the user to be able to click on his name indicator in the dashboard and be shown the list of outstanding inspections. Any ideas? Thanks
... View more
12-20-2019
06:25 AM
|
0
|
3
|
1279
|
|
POST
|
Robert, Would it be easy to allow this functionality in the widget? Thanks
... View more
12-19-2019
06:19 AM
|
0
|
4
|
1732
|
|
POST
|
Good day, Need to use the feature layer hover widget on multiple layers. How can I accomplish this as right now it only allows me to select one layer? Thanks Robert Scheitlin, GISP
... View more
12-18-2019
02:22 PM
|
0
|
6
|
1844
|
|
POST
|
Hi all, I'm trying to move the FLHover widget into the main WAB application. The reason I want to do this is that this way I don't need to have the widget button sitting on the screen. How would I accomplish this? I would even be happy with moving this code within WAB: <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Tooltips</title>
<style>
html,
body,
#divMap {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
body {
background-color: #FFF;
overflow: hidden;
font-family: "Trebuchet MS";
}
#bcMain {
width: 100%;
height: 100%;
}
</style>
<link rel="stylesheet" href="https://js.arcgis.com/3.24/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="https://js.arcgis.com/3.24/esri/css/esri.css">
<script src="https://js.arcgis.com/3.24/"></script>
<script>
var lastState = null;
require([
"esri/map",
"esri/layers/FeatureLayer",
"esri/graphic",
"esri/symbols/SimpleFillSymbol",
"esri/symbols/SimpleLineSymbol",
"esri/Color",
"esri/InfoTemplate",
"dojo/parser",
"dojo/on",
"dijit/layout/BorderContainer",
"dijit/layout/ContentPane",
"dojo/domReady!"
],
function(
Map, FeatureLayer, Graphic,
SimpleFillSymbol, SimpleLineSymbol, Color,
InfoTemplate, parser, on,
BorderContainer, ContentPane) {
parser.parse();
var sUrlUSAService = "https://sampleserver6.arcgisonline.com/arcgis/rest/services/USA/MapServer/2";
var mapMain = new Map("divMap", {
basemap: "satellite",
center: [-119.65, 36.87],
zoom: 4
});
var infoTemplate = new InfoTemplate("<b>State Name</b>", "${state_name}");
var lyrUSA = new FeatureLayer(sUrlUSAService, {
mode: FeatureLayer.MODE_ONDEMAND,
infoTemplate: infoTemplate,
outFields: ["state_name"]
});
mapMain.addLayers([lyrUSA]);
lyrUSA.on("mouse-move", function(evt) {
if(evt.graphic.attributes["state_name"] === lastState){
return;
}
setTimeout(function(){
mapMain.infoWindow.setFeatures([evt.graphic]);
mapMain.infoWindow.show(evt.screenPoint, mapMain.getInfoWindowAnchor(evt.screenPoint));
lastState = evt.graphic.attributes["state_name"];
}, 1);
});
});
</script>
</head>
<body class="claro">
<div id="bcMain" data-dojo-type="dijit/layout/BorderContainer" data-dojo-props="design:'headline', liveSplitters:'true'">
<div id="cpCenter" data-dojo-type="dijit/layout/ContentPane" data-dojo-props="region:'center'">
<div id="divMap"></div>
</div>
</div>
</div>
</body>
</html> Thanks
... View more
12-12-2019
10:59 AM
|
0
|
4
|
1462
|
|
POST
|
I have a feature service in AGOL which has attachments. I'm looking to build an Arcade expression which pulls the link to the attached image so I can use it in operations dashboard. Any ideas on this as right now the attachments function in Arcade says its not available? Thanks
... View more
12-11-2019
09:53 AM
|
0
|
2
|
1905
|
|
POST
|
Hi, I'm just gathering ideas on the best way to have a dynamic list of features. This would be used by field staff to see what needs to be done. Yes I've explored Workforce but might not work into my workflow. As a backup I was looking for other options. Thanks
... View more
12-06-2019
02:18 PM
|
0
|
0
|
417
|
|
POST
|
I too would like to see this functionality added. Would definitely help me out as I can control what the web form looks like at a moments notice, whereas the mobile app requires users to download the new survey (if they ever do).
... View more
12-02-2019
07:53 AM
|
1
|
1
|
4177
|
|
POST
|
Andrew Rudin Jackson County Missouri Patrick Hammons I too am interested in connecting to Socrata via AGOL. Is the above mentioned process still possible? If not any other options to connect?
... View more
11-28-2019
02:22 PM
|
2
|
1
|
5327
|
|
POST
|
Should be able to with HTML but that's a lot of formatting I was hoping to avoid. The images are external and not in any feature service so I will be unable to use Arcade. Thanks for the ideas! I may have to go your HTML route if all else fails.
... View more
11-28-2019
11:27 AM
|
0
|
0
|
707
|
|
POST
|
Hi all, Right now I'm trying to include multiple images on a popup in WAB. The images were added using the add popup media option in the AGOL webmap. The images all show up but the user has to click through them using the arrow. What I want is a list of the image such as this: Can something like this be done in a popup in WAB or AGOL, etc? Just looking for ideas. Thanks
... View more
11-27-2019
06:27 AM
|
0
|
2
|
775
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-31-2018 08:24 AM | |
| 3 | 12-18-2018 09:23 AM | |
| 1 | 12-02-2019 07:53 AM | |
| 1 | 04-24-2020 11:11 AM | |
| 1 | 08-14-2019 02:25 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:25 AM
|