POST
|
The selection widget will hang if a point layer contains records that were unsuccessfully geocoded (contains NULL in the geometry field). I've reached out to Esri tech support (BUG-00105003) and the developers say that it's the responsibility of the user to check data integrity before publishing. In publishing the data in ArcMap with NULL geometry, there is no indication when analyzing the data in the publishing wizard that there is any error, warning or a problem that the data contains NULL geometry. They suggested running the "Repair Geometry" tool in desktop. However, that permanently removes records that I may not want to delete. I understand that data integrity is important, but what would a user do if they are geocoding a table directly online using the world geocoder and end up with unmatched records? In this situation, ArcGIS Online does NOT have the ability to repair geometry. Shouldn't we just adjust or correct the Web AppBuilder selection widget to ignore NULL geometry? There is no problem when spatially selecting in ArcMap or ArcGIS Pro when your data contains NULL geometry. Can we be consistent? Feedback and thoughts would be appreciated.
... View more
02-12-2020
03:05 PM
|
0
|
1
|
131
|
POST
|
This was very helpful, thank you. I was able to get it to work.
... View more
01-29-2020
10:26 AM
|
0
|
0
|
45
|
POST
|
Hello! I am trying to remove a specified standalone table from the Contents pane. Here is the code I have so far: try { var mapView = MapView.Active; if (mapView != null) { var map = mapView.Map; if (map != null) { foreach (StandaloneTable table in map.StandaloneTables) { if (table.Name.Contains("K Factors")) map.RemoveStandaloneTable(table); } } } } catch (Exception ex) { } There may be multiple tables whose name contains "K Factors" and that's ok -- I would like them all removed. I noticed that map.StandaloneTables is a ReadOnlyObservableCollection and I'm not sure if this has to do with the exceptions that I'm getting. The exception says either, {"Class not registered\r\n\r\nClass not registered\r\n"} or {"Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))"} Any help would be appreciated.
... View more
01-28-2020
04:20 PM
|
0
|
2
|
173
|
POST
|
That actually worked well for my solution. Thank you!
... View more
08-13-2019
07:52 AM
|
0
|
0
|
139
|
POST
|
I would like my combobox on my custom ribbon to refresh on its drop down event. I searched msdn for information about the OnDropDown() event signature but this isn't recognized (see attached screenshot). How can I capture combobox on the ribbon's drop down event ?
... View more
07-29-2019
02:57 PM
|
0
|
2
|
201
|
POST
|
Hi, I've made a very simple, custom map tool that selects features with a rectangle sketch outline (it's basically 'Select by Rectangle' tool). I made my own tool instead of using Esri's DAML ID for the select by rectangle tool because I want to have my own functionality for OnMouseUp. I know how to make this tool and access it in the Pro Add-in ribbon tab. However, how would I be able to use my tool's functionality in my own button on my own dockpane? I've tried looking at the Config.daml for my custom tool's button id, so that i could do something like this: FrameworkApplication.SetCurrentToolAsync("my_custom_tool_id"); However I couldn't get it to work. Am I on the right path? Thank you.
... View more
05-13-2019
10:09 AM
|
0
|
2
|
232
|
POST
|
Hi Uma, This worked perfectly for what I wanted to achieve. Thank you!
... View more
05-01-2019
04:38 PM
|
0
|
0
|
96
|
POST
|
Hi Uma, Thank you for your help. Unfortunately, I don't think this is related to what I'm looking for. If possible, I would like a live control that displays which states and conditions are active. For example, my custom pane would display esri_mapping_mapPane condition when a map pane is active, but if I switched to the full catalog and no map pane was active, then the esri_mapping_mapPane condition would not be displayed on my custom pane anymore. The esri_mapping_mapPane condition is an esri condition and does display for this code sample: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/f5f9dda18efa173a56d128f3ea64ca34ac3f68a9/Framework/ConditionQuery However, I was wondering if I could include custom states and conditions to display in ArcGIS pro like in the sample, also.
... View more
04-25-2019
11:52 AM
|
0
|
0
|
28
|
POST
|
Hi, this was very helpful and worked with my program. Thank you!
... View more
04-25-2019
11:45 AM
|
0
|
0
|
131
|
POST
|
Hi! I want to learn how to capture when my custom dockpane is closed. I would like to handle this event by saving whether the dockpane was left open or closed. I found this resource (ProConcepts Framework · Esri/arcgis-pro-sdk Wiki · GitHub ) but I'm not sure if it's related, because I put this code into my Module.cs file: protected override void OnPaneClosed( Pane pane ) { //... } and added a breakpoint in VisualStudio 2017. I ran my program and when I closed my custom dockpane, the breakpoint wasn't hit. I thought that there might be an event related to panes that I could subscribe OnPaneClosed() to but I didn't find anything that sounded like what I need.
... View more
04-25-2019
11:43 AM
|
0
|
4
|
465
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:24 AM
|