POST
|
Can confirm its an issue with the latest 3.22. I just spent 2 hours trying to figure out how I broke my pulldata functions returning 'not an object' in Chrome dev tools only to realize thanks to above if I put version=3.21 they suddenly work.
... View more
05-06-2025
07:08 AM
|
1
|
0
|
1124
|
POST
|
We have a workflow where we generate GPX files for Garmin marine devices and then collect data within Field Maps. To help manage the hundreds that get created I was hoping to attach the GPX files to our survey boundary areas so users could easily download them and bluetooth them over to their Garmins. Unfortunately GPX isn't a supported attachment file type so I tried zipping them up to attach. However now in Field Maps I'm learning if you click on a zip file attachment you can't actually open it or download it even with a solid data connection. Is anyone aware if I'm missing something or if this is an actual limitation?
... View more
04-03-2025
08:04 AM
|
0
|
1
|
233
|
POST
|
Ah I knew it was somewhere! I kept looking in the app settings. Thanks!
... View more
01-14-2025
09:50 AM
|
0
|
0
|
388
|
POST
|
Hi all, quick (and hopefully dumb) question. In Field Maps when our users create a line feature it automatically drops the initial vertice on the users location. Is there a way in the settings to disable that behavior? Right now we try to tell users to delete the initial point but hoping there is a way to not drop any points until the user starts streaming their track.
... View more
01-14-2025
09:36 AM
|
0
|
2
|
397
|
IDEA
|
Glad its moving forward but compared to the current batch attribute tool that looks clunky and unintuitive for most users. I feel like having the option to still update a single feature with many selected is going to lead to a lot of user error. Will there be an option have multiple instances of this widget? For instance, right now for an emergency management application we rotate in a lot of volunteers that are unfamiliar with GIS. To help with their job we have a WAB that has several batch attribute widgets, each configured to only select certain features and have different attributes they can update. Each is labeled 'Click here to assign a field assessor', 'Click here to assign a contractor', etc. Will this be able to support a workflow like that?
... View more
11-20-2024
07:23 AM
|
0
|
0
|
6181
|
POST
|
Trying to create a multidimensional mosaic dataset using GRIB files from NOAA. My tools were working fine in Pro 3.1 but not in 3.2. When I go to Add Rasters to Mosaic Dataset, I'll the the configuration for GRIB and point it to a folder. It just returns 2024-07-01T09:34:55.049: Loading raster datasets 2024-07-01T09:37:55.418: Completed crawling 0 data source items. Added 0 mosaic dataset items. 2024-07-01T09:37:55.421: Error: 8004818c: No new mosaic dataset item was added. I tried just adding the files paths in as datasets and got the same result. When I load only a single file in it gets loaded to the mosaic just fine. However as soon as I load a second file in it fails. The files are all the same area, variables, and resolution. Any ideas?
... View more
07-01-2024
07:47 AM
|
0
|
0
|
369
|
POST
|
None of this is the problem unfortunately. Microsoft Store is blocked on our work computers so traditional install is what we have to go through.
... View more
05-15-2024
09:28 AM
|
0
|
1
|
572
|
POST
|
Just downloaded Connect 3.19.116 and overwrote my old installation (3.18) but can't make any blank new forms. Advanced and Simple form options are suddenly gone. Tried reinstalling but no luck.
... View more
05-13-2024
12:41 PM
|
1
|
4
|
642
|
POST
|
Is there a way to display a label next to the widget in the View UI? For instance I would like to place text that says "Draw an outline" that is anchored to the button here. Thanks! view.when(() => { const sketch = new Sketch({ layer: graphicsLayer, view: view, creationMode: "update", snappingOptions: { enabled: true, featureSources: [ { layer: graphicsLayer, enabled: true }, { layer: rafterGraphicsLayer, enabled: true }, ], }, tooltipOptions: { enabled: true }, labelOptions: { enabled: true }, visibleElements: { createTools: { point: false, rectangle: false, polyline: false, polygon: true, circle: false, }, selectionTools: { "lasso-selection": false, "rectangle-selection": false, }, settingsMenu: false, undoRedoMenu: false, duplicateButton: false } }); view.ui.add(sketch, "top-right"); })
... View more
03-27-2024
12:15 PM
|
0
|
0
|
420
|
POST
|
This error seems to be pretty sporadic and I've found absolutely no rhyme or reason to it, but this error has been occurring when trying to update an existing point with an attachment and attributes in Field Maps. Restarting the device seems to solve the issue most of the time, but its happened on both Android and iPhone devices for multiple users. I pulled the Field Apps error log and it was blank of any messages however the ArcGIS server log does show this. SEVERE Feb 26, 2024, 3:58:13 PM Error: Unsupported request name. *****/*****MapServer SEVERE Feb 26, 2024, 3:58:13 PM Unsupported request name.***** *****/*****.MapServer
... View more
02-26-2024
04:39 PM
|
2
|
3
|
641
|
BLOG
|
Will we be able to host HTML files then in our content to replace the embedded codes we will lose access to? We can't have people logging in twice to see an HTML file hosted on a third party site.
... View more
06-05-2023
03:23 PM
|
1
|
0
|
268
|
POST
|
Mistake of my own making, changed the lines to jobInfo.waitForJobCompletion(options).then(() => {
jobInfo.fetchResultData('outfile').then(function(result){
outputFileUrl = result.value.url;
window.open(outputFileUrl, "_blank"); and it works as planned. Thanks to everyone who took a look!
... View more
04-07-2023
12:22 PM
|
0
|
0
|
989
|
POST
|
Hi all, I've been working on a GP tool that will take a record and print out a PDF report on it. I'm trying to use some Javascript within an HTML embed to call the tool when a link is clicked. It will generate the report, check when the job is completed, then open the URL to the PDf in a new tab. Its 99% working, and I can see the server generate the report in the log and can follow the Job ID and open the PDF on my own, however JobInfo in the code never seems to return a completed status to open it up in a tab. I can see it checking the status every 1.5 seconds in the server log though. Any ideas why lines 30-32 just won't go anywhere? <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Print Abstract of Bids</title>
<script src="https://js.arcgis.com/4.20/"></script>
<script>
function executeGeoprocessing() {
var outputFileUrl;
var params = {};
params.contract = "10-100"; //sample record, change to variable on embed
const url = "https://xxxxxxxx/xxxxxx/rest/services/PrepareAbstractOfBids/GPServer/Prepare%20Abstract%20of%20Bids";
require([
"esri/tasks/Geoprocessor",
"esri/rest/support/JobInfo"
], function(Geoprocessor, JobInfo) {
var gp = new Geoprocessor(url);
gp.submitJob(params).then((jobInfo) => {
const jobid = jobInfo.jobId;
console.log("ArcGIS Server job ID: ", jobid);
const options = {
interval: 1500,
statusCallback: (j) => {
console.log("Job Status: ", j.jobStatus);
}
};
jobInfo.waitForJobCompletion(options).then(() => {
outputFileUrl = jobInfo.jobOutputInfo[0].value.url;
window.open(outputFileUrl, "_blank");
});
});
});
}
document.addEventListener("DOMContentLoaded", function(event) {
var link = document.getElementById("print-abstract-link");
link.addEventListener("click", function(event) {
event.preventDefault();
executeGeoprocessing();
});
});
</script>
</head>
<body>
<p><a href="#" id="print-abstract-link">Print Abstract</a></p><br>
</body>
</html>
... View more
04-07-2023
10:05 AM
|
0
|
1
|
1017
|
IDEA
|
Is there any update on this? We use dozens of web forms and being able to grid the layout would be a huge improvement!
... View more
04-05-2023
07:44 AM
|
0
|
0
|
1919
|
POST
|
This is a critical feature we've been waiting on. Downloading from embedded apps hasn't worked for us since downloads are blocked in an i-frame (and our computers don't allow changing settings). Plus Experience Builder tables are capped at 5000 records so those don't work. Any word on if this will be in 11.1?
... View more
12-08-2022
07:06 AM
|
0
|
1
|
3448
|
Title | Kudos | Posted |
---|---|---|
1 | 05-06-2025 07:08 AM | |
2 | 02-26-2024 04:39 PM | |
1 | 05-13-2024 12:41 PM | |
1 | 06-05-2023 03:23 PM | |
1 | 02-03-2022 12:38 PM |
Online Status |
Offline
|
Date Last Visited |
05-06-2025
07:06 AM
|