|
POST
|
Divide by "From start/end of line". https://pro.arcgis.com/en/pro-app/latest/help/editing/divide-a-polyline-by-a-value.htm Or Split if you don't need the precision of Divide. https://pro.arcgis.com/en/pro-app/latest/help/editing/split-a-feature.htm
... View more
03-20-2023
09:02 AM
|
0
|
2
|
1555
|
|
POST
|
I add this at the end of the function to replace the image with a note if no image found. .fail(function() { console.log("nada"); let ele = document.getElementById("photoContainer"); ele.innerHTML += "NO IMAGES AVAILABLE ";})
... View more
01-31-2023
07:07 AM
|
0
|
0
|
269
|
|
POST
|
Check the url you are using and see if it has .../manager/.... If so take that part out of the URL when adding.
... View more
01-05-2023
10:47 AM
|
0
|
0
|
2318
|
|
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
|
1701
|
|
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
|
1712
|
|
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
|
1496
|
|
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
|
1527
|
|
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
|
901
|
|
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
|
751
|
|
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
|
3841
|
|
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
|
4440
|
|
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
|
5020
|
|
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
|
5338
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | a week ago | |
| 1 | 2 weeks ago | |
| 1 | 04-12-2021 09:58 AM | |
| 2 | 03-18-2025 10:32 AM | |
| 1 | 07-28-2020 11:56 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|