|
POST
|
Understood. I was having similar problems getting QueryDef and Evaluate to work and found using QueryFilter and Search was able to accomplish the same goal.
... View more
01-05-2023
08:17 AM
|
0
|
0
|
2472
|
|
POST
|
Try using table search and QueryFilter instead. using (var tbl = featLayer.GetTable())..... var queryFilter = new QueryFilter {... using (var rowCursor = tbl.Search(queryFilter, false))....
... View more
01-05-2023
08:04 AM
|
0
|
6
|
2483
|
|
POST
|
The second solution I provided should do this. Symbolize the NULL only and the new features will show up as the all other values symbol no matter what the value is, if not NULL.
... View more
12-02-2022
06:10 AM
|
1
|
0
|
2003
|
|
POST
|
Symbolize by Unique Values. Move the NOT NULL values so they are all in a row. Click the first one -> Shift Click the last one -> Right click the Value or Label of one of those selected -> Group Values. OR Unique Values -> More -> Remove all. Click the + (Add unlisted values) -> add the NULL. More -> Show all other values.
... View more
11-28-2022
12:49 PM
|
1
|
0
|
2034
|
|
POST
|
Is is possible to add the thousands separators in the title section of the popup template? So 1000 shows as 1,000. I know you can format in the content using digitSeparator, but I cannot figure out how to do it in the title section.
... View more
10-27-2022
01:56 PM
|
0
|
1
|
1104
|
|
POST
|
I was wondering if its possible to customize how the featureMenuOpen option for the popup.open of the popup template. The default is for it to display the title of the popup template. Basically I want to display the menu options as a table, but not the final popup. See below. Desired Menu Desired Popup Not wanted Popup if I use the desired menu function getResults(results){
// get the resulting query features and set the symbology for the graphics layers to display the results
const searchResults = results.features.map(function(feature){
// popup for the result(s)
feature.popupTemplate = createPopupTemplate();
return feature
});
// response handlers from to many or not enough results.
if(searchResults.length > 100){
alert("Over 100 query results found, please provide a more specific query!");
}
if(searchResults.length == 0){
alert("No results found for this query!")
}
else if(searchResults.length <= 100){
resultsLayer.addMany(searchResults);
// add the popup of the results to the view
theView.popup.open({
features: searchResults,
featureMenuOpen: true,
//closeButton: true,
title: "testst",
collapsed: true
}); function createPopupTemplate(){
const urlTax = "https://";
const urlRC = "https://www."
var parInfo = 'https://www.html';
return{
title:
"<b>Owner: </b> {PartyName}" +
"<b>Address: </b> {PropertyAddress}" +
"<b>Property Number: </b> {PropertyNumber}", //+
//"<table>" +
//"<tr><th>Owner:</th><th>Address:</th><th>PropertyNumber</th></tr>" +
//"<tr><td>{PartyName}</td><td>{PropertyAddress}</td><td>{PropertyNumber}</td></tr></table>",
//"<a class='hyperlinkURL2' target='_blank' href='#{Plat_HL}'>View Plat</a>",
outFields: ["*"],
content:
[
{
type: "fields",
fieldInfos:[
{
fieldName: "QuickRefID",
label: "Quick Ref ID",
},
{
fieldName: "ACRES",
label: "Acres",
format:{
places: 2,
}
},
{
fieldName: "RP_AprTot",
label: "Total Appraised Value",
format: {
places: 2,
digitSeparator: true,
}
},
]
},
{
type: "text",
text: "<a class='hyperlinkURL' target='_blank' href=" + parInfo + "?PropertyID={PropertyID}&PID={PID}&PropNum={PropertyNumber}>Parcel Information</a>      <a class='hyperlinkURL' target='_blank' href=" + urlTax + "PID={PID}>Tax Information</a>"
},
{
type: "text",
text: "<a class='hyperlinkURL2' target='_blank' href=https://{expression/platlinked}>View Plat</a>      <a class='hyperlinkURL' href=" + urlRC + "{PropertyNumber}.pdf>Property Record Card</a>",
},
],
expressionInfos:[
{
name: "platlinked",
expression: platy,
},
]
}
... View more
10-25-2022
10:11 AM
|
0
|
0
|
890
|
|
POST
|
Symbology crash happens with KB5107380 and KB5016316. Both machines have .NET 4.8.1
... View more
10-06-2022
10:15 AM
|
0
|
0
|
4790
|
|
POST
|
Is there a place where ESRI posts when things that they aware of like this happen?
... View more
09-27-2022
08:51 AM
|
0
|
0
|
5112
|
|
POST
|
KB5017262 .NET 4.0 AVAST It is working fine on a machine that has KB5017266 Both are on Pro 2.9.3
... View more
09-26-2022
12:54 PM
|
0
|
2
|
5692
|
|
POST
|
Same thing is happening to my organization. I cannot find any updates from ESRI on this issue.
... View more
09-26-2022
11:16 AM
|
0
|
10
|
6010
|
|
POST
|
Still does not work in 2.9.3 - Copy Features works but not Make Feature Layer. Code runs fine in 2.4.2. Code runs fine in 2.9.3 when ran in the interactive widow. If fails when run in a Toolbox. Tempcopy = arcpy.CopyFeatures_management(ParOrionLayer, "memory/tempParReg")
arcpy.MakeFeatureLayer_management(Tempcopy, "memory/tempO") Traceback (most recent call last):
File "<string>", line 91, in execute
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\__init__.py", line 1287, in Describe
return gp.describe(value, data_type)
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\geoprocessing\_base.py", line 384, in describe
self._gp.Describe(*gp_fixargs(args, True)))
OSError: "memory/tempO" does not exist
Failed to execute (PDFTool). With addLayer ParOTempcopy = arcpy.CopyFeatures_management(ParOrionLayer, "memory/tempParReg")
ParOrion = arcpy.MakeFeatureLayer_management(ParOTempcopy, "memory/tempOrion")
m.addLayer(ParOrion, "TOP") File "<string>", line 85, in execute
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\utils.py", line 191, in fn_
return fn(*args, **kw)
File "C:\Program Files\ArcGIS\Pro\Resources\ArcPy\arcpy\_mp.py", line 1843, in addLayer
return convertArcObjectToPythonObject(self._arc_object.addLayer(*gp_fixargs((add_layer_or_layerfile, add_position), True)))
ValueError: memory/tempOrion
... View more
06-16-2022
08:40 AM
|
3
|
0
|
8696
|
|
IDEA
|
User error and incorrect information from ESRI Tech support. This is already implemented.
... View more
05-16-2022
09:21 AM
|
0
|
0
|
1281
|
|
IDEA
|
Both Enterprise portal and/or AGOL using a server feature service. It's when I try and create a Form. According to this: https://doc.arcgis.com/en/field-maps/android/help/configure-the-form.htm Note: Adding basic form elements is not currently supported in ArcGIS Enterprise.
... View more
05-13-2022
07:30 AM
|
0
|
0
|
1312
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 1 | 03-23-2026 08:11 AM | |
| 1 | 03-23-2026 07:55 AM | |
| 7 | 03-18-2026 12:15 PM | |
| 1 | 03-11-2026 07:51 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|