|
POST
|
Some of the elements are going to be hidden in the dev tools. This is not a perfect solution either but below is a simple JavaScript function that can be run in the dev tools console to output all the font-sizes on the page to a table in the console. It groups the font sizes by the element tag names but you can try other element properties to try to narrow down where a specific font size is being used. Just change el.tagName on line 7 to another element property like el.title (() => {
try {
const elements = document.querySelectorAll('*');
const fontSizesByTag = {};
elements.forEach(el => {
const tag = el.tagName
const fontSize = window.getComputedStyle(el).fontSize;
const fontSizePt = Number(fontSize.slice(0,-2)) * (72/96)
const fontSizePtString = fontSize + '|' + fontSizePt.toString() + 'pt'
if (!fontSizesByTag[tag]) {
fontSizesByTag[tag] = new Set();
}
fontSizesByTag[tag].add(fontSizePtString);
});
// Convert Sets to arrays for easier reading
const result = {};
Object.keys(fontSizesByTag).forEach(tag => {
result[tag] = Array.from(fontSizesByTag[tag]);
});
console.table(result);
console.log("Font sizes grouped by element tag:", result);
} catch (err) {
console.error("Error while retrieving font sizes:", err);
}
})(); Here is the location to run the script. You might get a prompt to allow pasting into the console before you can run it.
... View more
yesterday
|
1
|
0
|
19
|
|
POST
|
@AkshayHarshe thank you for the information. I tried using the "When a HTTP request is received" trigger only to find out that our instance of ArcGIS Enterprise 11.5 is hard coding all hosted feature services supportsFieldsToCompare property to false with no option to change it. So any extractChanges calls with the fieldsToCompare property fail.
... View more
|
0
|
0
|
14
|
|
POST
|
I am trying to create a webhook that will send an email when the status changed to a specific value. It looks like I need the fieldsToCompare array but the supportsFieldsToCompare property is set to false. I have tried using updateDefinition to change the supportsFieldsToCompare to true but I get this error "Field 'extractChangesCapabilities' cannot be updated." This involves a hosted feature service on ArcGIS Enterprise 11.5 with Change Tracking enabled and Sync disabled. I have tried with other hosted feature services and the result is the same. Here is part of the service's definition. "capabilities": "Query,Create,Update,Delete,Editing,Extract,Uploads,ChangeTracking",
"xssPreventionInfo": {
"xssInputRule": "rejectInvalid",
"xssPreventionRule": "input",
"xssPreventionEnabled": true
},
"supportsAppend": true,
"supportsDisconnectedEditing": false,
"maxFieldNameLength": 63,
"extractChangesCapabilities": {
"supportsFeatureReturn": true,
"supportsReturnHasGeometryUpdates": false,
"supportsLayerQueries": true,
"supportsReturnAttachments": true,
"supportsReturnIdsOnly": true,
"supportsServerGens": true,
"supportsFieldsToCompare": false,
"supportsGeometry": true,
"supportsReturnExtentOnly": true
},
"supportedAppendFormats": "featureCollection,featureService,shapefile",
"serviceAdminOperationsOptions": {
"deleteFromDefinition": [
"tables",
"layers"
],
"addToDefiniton": [
"tables",
"layers"
],
"updateDefinition": [
"initialExtent",
"preferredTimeReference",
"GUIDFormat",
"datumTransformations",
"xssPreventionInfo",
"preserveLayerIds",
"zDefault",
"serviceDescription",
"layerOverridesEnabled",
"allowGeometryUpdates",
"editorTrackingInfo",
"canUseTopologicalSortForRelationshipOrdering",
"copyrightText",
"description",
"enableZDefaults",
"hasStaticData",
"syncRowsMovedOutsideFilter",
"maxRecordCount",
"enforceDefinitionQueryDuringEdit",
"maxViewsCount",
"capabilities",
"supportsBiDirectionalSyncForServer",
"maxIdsCount"
]
},
"currentVersion": 11.5,
... View more
Wednesday
|
0
|
0
|
73
|
|
POST
|
I am trying to use URL parameters with the Reporter and Manager instant apps, but both seem to ignore the URL parameters. Are they not supported in ArcGIS Enterprise?
... View more
|
0
|
3
|
119
|
|
POST
|
One way is to use your browser's dev tools. If you right click on the text in question, select Inspect in the menu That should take you straight to the HTML of the text and show the font size in pixels. If you need the font size in points instead of pixels, you can copy/paste the text into word processing software being sure to keep the source formatting or you can use an online pixels to points converter.
... View more
Monday
|
1
|
0
|
54
|
|
POST
|
Did anyone figure this out? On my hosted feature services the supportsFieldsToCompare is set to false and I cannot find a way to change it?
... View more
a month ago
|
0
|
0
|
91
|
|
POST
|
In Microsoft Power Automate, does anyone know of a way to compare the original attribute value to the current attribute value when a "Fetch updates, changes, or deletions from feature layer" is used with a "When a record is updated in a Feature Layer" trigger? It looks like the fieldsToCompare parameter for extractChanges is what I need but I cannot find a way to set that parameter in Power Automate. It also appears that supportsFieldsToCompare is set to false for all my hosted feature services that have Change Tracking enabled. I would like users to get emails when the status of a reported issue has changed. Currently, I am sending different emails based on the current status, but the emails also trigger when staff enters notes on the reported issue even though the status has not changed.
... View more
a month ago
|
0
|
3
|
223
|
|
POST
|
@AkshayHarshe I just wanted to let you know that I found the problem. I migrated our ArcGIS Enterprise deployment to new machines back in March 2025 using the Join Site operation method. That process should have renamed all the machine names in config files to the new machine names. However, it did not change the machine name in a queue-store.json file on the new ArcGIS Server machine. I updated the file, restarted the ArcGIS Server service and now our webhooks are triggering.
... View more
a month ago
|
1
|
1
|
231
|
|
POST
|
@AkshayHarshe the changesUrl is always blank no matter what I do for any service or trigger event. I have been going over the logs and I find this error once an hour. I replaced the GUID that was in the error with <GUID> since I don't know if that is sensitive info or not. Webhook log: Error in Webhook Processor. init WebhookProcessors failed. FS Webhook processor init failed Connecting to queue : <GUID>_FS_Raw_Events_Queue failed. Could not create a queue with id : [<GUID>_FS_Raw_Events_Queue] Connection refused: getsockopt. I have opened a support ticket. The odd thing is I first tested a service webhook back in April when we were on ArcGIS Enterprise 11.4 and I had no issues. The webhook triggered every single time. Now that we are on 11.5 I cannot get a service webhook to do anything.
... View more
a month ago
|
0
|
2
|
266
|
|
POST
|
When you say data is not visible are you referring to items in ArcGIS Portal or services are not rendering in web maps/apps? It could be several things. Have you done the following? Check the ArcGIS Portal index status and rebuild if the numbers do not match. Check the ArcGIS Portal and ArcGIS Server logs to see what errors/warnings are being thrown. If the data is store in enterprise geodatabases, make sure the license has been updated for each enterprise geodatabase. (I have missed that step before) Make sure this patch is install on ArcGIS Portal https://support.esri.com/en-us/patches-updates/2025/portal-for-arcgis-11-5-web-applications-patch , many web apps will fail to show data without this patch If you use the IIS web adaptor, make sure this patch is installed https://support.esri.com/en-us/patches-updates/2025/arcgis-web-adaptor-iis-stability-patch
... View more
12-16-2025
09:02 AM
|
0
|
0
|
172
|
|
POST
|
This is what I am seeing in Power Automate when I try testing the flow. I have changed current flow to trigger on updates instead of creation just to test what is wrong. Nothing runs after the fetch step. I have tried the workflow described here https://www.esri.com/arcgis-blog/products/field-maps/field-mobility/automate-field-notifications-with-microsoft-power-automate and another here https://support.esri.com/en-us/knowledge-base/how-to-generate-automated-email-notifications-for-arcgi-000030586 The flow is active on ArcGIS Enterprise I have also setup a similar flow on another hosted feature service. It has successfully emailed once, but the changesUrl was also blank. The difference is I am not looping through the items to send the email. However even with this flow, I have tried to trigger it many times, and I have only received one email. I checked the service webhook endpoint and the ServerGen field is blank on all of the webhooks I have made. Should that be the case? The notificationStatus page is also blank for all of the webhooks.
... View more
12-16-2025
08:35 AM
|
0
|
0
|
283
|
|
POST
|
In Microsoft Power Automate GCC I have been trying to setup a service webhook to send an email message "When a record is updated in a feature layer" but the "Fetch updates, changes, or deletions from feature layer" changesURL is always blank. Keep track of changes to the data (add, update, delete features) is enabled The webhook shows up in ArcGIS Server Admin in the service's webhook page The webhook shows up in ArcGIS Portal on the Settings->Webhooks page The webhook is listed as active The service is a hosted feature layer view, but I have tried setting this up on the parent hosted feature layer I have tried using the credentials of the service owner account and the primary site admin account to setup the ArcGIS Enterprise connector in Power Automate I have deleted and recreated the ArcGIS Enterprise connector in Power Automate I have tried "When a record is created in a feature layer" but the result is the same The service's webhook Notification Status page is always empty I am not seeing anything in the ArcGIS Server or ArcGIS Portal logs when I try triggering the webhook I am out of ideas at this point. I was wondering if I have missed something or if this is a bug in the connector. I will note that the webhook is using logic.azure.us and I thought Microsoft discontinued that URL at the end of November.
... View more
12-12-2025
10:37 AM
|
0
|
6
|
341
|
|
POST
|
I am on ArcGIS Enterprise 11.5 and I am trying to create a Table (hosted, view) from a Table (hosted) item. All the views that are created are Feature layer (hosted, view). Does anyone know how to generate a Table (hosted, view) from a Table (hosted) item?
... View more
12-10-2025
09:27 AM
|
0
|
0
|
184
|
|
IDEA
|
@ZachBodenner thank you for the information and I had not until now. The inference constraints is partially what I am looking for. However, I would like to have the visual cues that the Map Viewer has with the geometry guides, and the inference constraints did not work for me when editing vertices of existing features.
... View more
12-04-2025
10:26 AM
|
0
|
0
|
483
|
|
IDEA
|
It would be very helpful for ArcGIS Pro to have a Geometry Guides setting similar to what the ArcGIS Online Map Viewer already does. I know ArcGIS Pro already has a right angle line tool when creating new lines or polygons, but that is not available when editing vertices. A global/universal Geometry Guide setting in ArcGIS Pro would: allow users to create uniform lines and polygons whether they are adding a new feature or updating an existing feature allow features to be created faster because you would not have to switch back and forth between the line and right angle line tools I do not want this to replace the any tools but instead compliment the editing tools that are already available. Here is an example from Map Viewer of what I am talking about. I created a line feature, and the geometry guides let me know that I have a right angle, the third line is parallel to the other side, and the end is now perpendicular to the starting point.
... View more
12-04-2025
08:36 AM
|
4
|
5
|
536
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | Monday | |
| 1 | 11-18-2021 07:10 AM | |
| 1 | a month ago | |
| 4 | 12-04-2025 08:36 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|