POST
|
Don't forget to make the same change in the last elif
... View more
05-09-2025
08:51 AM
|
0
|
0
|
292
|
POST
|
You can use the results of the first Replace in a second Replace Replace(Replace([ALIAS],"CO-",""),"E-","")
... View more
05-08-2025
06:13 AM
|
0
|
0
|
170
|
POST
|
Experience Builder also uses URL parameters. Look at the Data-related parameters section to see how to configure it to zoom to your selected feature
... View more
05-07-2025
01:49 PM
|
1
|
4
|
273
|
POST
|
You can submit corrections and feedback about Esri Basemaps here.
... View more
05-07-2025
07:44 AM
|
0
|
0
|
224
|
POST
|
I'm referring to a text element like this: The expression used in that element just has a text return, not an object return var label = "This is a test"
return label
... View more
05-06-2025
07:25 AM
|
1
|
1
|
346
|
POST
|
You can use the $map variable in AGOL if you're referring to a featureset in the current map. If featureset is not in your map, then you have to retrieve it using FeatureSetByPortalItem.
... View more
05-06-2025
06:31 AM
|
0
|
0
|
357
|
POST
|
If this a simple text element, you don't need to return an object. For an Arcade element (or a chart), you will need to return an object.
... View more
05-06-2025
06:25 AM
|
0
|
3
|
361
|
POST
|
This will remove "MDU " from your string if it contains it. Otherwise, the original string will be returned var label = $feature.MDU_NAME
return iif(Left(label, 4) == 'MDU ', Mid(label, 4), label);
... View more
05-06-2025
06:13 AM
|
2
|
0
|
205
|
POST
|
The Combobox component is designed for multiple selections and uses those icon for selections in the multiple-selection mode. Can you use the Select component instead?
... View more
05-01-2025
01:40 PM
|
0
|
1
|
158
|
POST
|
You have to replace the single quotation mark with two single quotation marks (the first one is used as an escape character). var qf = new SpatialQueryFilter();
qf.FilterGeometry = myShape;
qf.SpatialRelationship = SpatialRelationship.Intersects;
qf.WhereClause = $"{AllFieldnames.parcelNumFieldname} = '{intersctedParcelNum.Replace("'","''")}'";
... View more
05-01-2025
10:45 AM
|
3
|
0
|
179
|
POST
|
You can add multiple statistics to the GroupBy function. This will return the latest and earliest inspections for each hydrant. However, this does not include dates that are null GroupBy(inspections , 'HydrantID', [{name: 'Latest', expression: 'dateinspected', statistic: 'MAX'},{name: 'Earliest', expression: 'dateinspected', statistic: 'MIN'}])
... View more
04-30-2025
12:19 PM
|
1
|
1
|
337
|
POST
|
Give this a try var activities = GroupBy(fil2, 'RecType', [{ name: 'NumTypes', expression: 'RecType', statistic: 'COUNT' }, {name: 'Icon', expression: 'iconPath', statistic: 'Min' }]) You can use the Min and Max statistics on string fields. In your case, each would give the same result, since the paths are the same for each RecType.
... View more
04-30-2025
05:48 AM
|
1
|
1
|
264
|
POST
|
Do you have a timeline when the CSS utility classes will be upgraded to Bootstrap 5.x, since 4.3.x was originally released in 2019 and 5.0 was released in 2021?
... View more
04-29-2025
06:46 AM
|
0
|
1
|
220
|
POST
|
In Dashboards, a Data Expression must return a FeatureSet. Your code is returning a dictionary, but that has to be to converted into a FeatureSet for it to be used in the Dashboard. return FeatureSet({
fields: [
{ name: "projectID", type: "esriFieldTypeString" },
{ name: "appropriations", type: "esriFieldTypeDouble" },
{ name: "encumbrance", type: "esriFieldTypeDouble" },
{ name: "expenditures", type: "esriFieldTypeDouble" },
{ name: "availableBalance", type: "esriFieldTypeDouble" }
],
geometryType: "",
features: features
});
... View more
04-29-2025
06:40 AM
|
1
|
1
|
217
|
Title | Kudos | Posted |
---|---|---|
1 | Thursday | |
1 | Thursday | |
1 | Wednesday | |
2 | Wednesday | |
1 | Tuesday |
Online Status |
Offline
|
Date Last Visited |
9 hours ago
|