|
POST
|
@MK13 Regarding line 8, Is mySnowFlakeQuery a variable? If so, it needs to be in curly braces. (Just checking)
... View more
07-30-2024
02:33 PM
|
0
|
0
|
1279
|
|
POST
|
@MK13 Regarding line 8, Is mySnowFlakeQuery a variable? If so, it needs to be in curly braces. (Just checking) var query1 = $"mySnowFlakeQuery";
... View more
07-30-2024
02:32 PM
|
0
|
1
|
1279
|
|
POST
|
@JoeMadrigal You can use the CIM Viewer addin to examine the CIM Definition of objects in ArcGIS Pro. If you are on Pro 3.x, use the addin from the CIMViewer_3.x folder in the above repo. The ReadMe file in the repo has detailed instructions on how to use the addin to view the CIM Definitions.
... View more
07-30-2024
02:26 PM
|
1
|
0
|
1409
|
|
POST
|
@JoeMadrigal You can access the CIM Definition of the Group Layer to accomplish this. Code snippet: //Construct/Create the group layer first.
var groupLayerCreationParams = new GroupLayerCreationParams();
groupLayerCreationParams.Name = "Group Layer";
var groupLayer = LayerFactory.Instance.
CreateLayer<GroupLayer>(groupLayerCreationParams, MapView.Active.Map);
//Get the CIM Definition of the group layer
var groupLayerDefinition = groupLayer.GetDefinition() as CIMGroupLayer;
//Set the "SublayerVisibilityMode" CIM property of the group layer to
//"Independent" or "Exclusive". Use the SublayerVisibilityMode enum.
//SublayerVisibilityMode.Exclusive - Radio button
//SublayerVisibilityMode.Independent - checkbox
groupLayerDefinition.SublayerVisibilityMode = SublayerVisibilityMode.Exclusive;
//Set the modified CIM Definition back to the group layer.
groupLayer.SetDefinition(groupLayerDefinition);
... View more
07-29-2024
02:27 PM
|
0
|
0
|
1430
|
|
POST
|
@DirkTillmanns I tried this with the "ImpersonateMapPane" community sample. I started an active editing session for a line feature class in my active map view. I then activated my new Map pane in the middle of the editing session. When I went back to my original Mapview, I was able to restart my editing session. I did not see the tool being deactivated\reactivated. Is this similar to your workflow? Just confirming to see what I am missing in order to repro your issue. Thanks Uma
... View more
07-19-2024
09:39 AM
|
0
|
1
|
1036
|
|
POST
|
Here is a code snippet that creates a Query Layer - with the "SqlQuery" defined. Create a query layer await QueuedTask.Run(() =>
{
Map map = MapView.Active.Map;
Geodatabase geodatabase = new Geodatabase(new DatabaseConnectionFile(new Uri(@"C:\Connections\mySDE.sde")));
CIMSqlQueryDataConnection sqldc = new CIMSqlQueryDataConnection()
{
WorkspaceConnectionString = geodatabase.GetConnectionString(),
GeometryType = esriGeometryType.esriGeometryPolygon,
OIDFields = "OBJECTID",
Srid = "102008",
SqlQuery = "select * from MySDE.dbo.STATES",
Dataset = "States"
};
var lcp = new LayerCreationParams(sqldc)
{
Name = "States"
};
FeatureLayer flyr = LayerFactory.Instance.CreateLayer<FeatureLayer>(lcp, map);
});
... View more
07-16-2024
01:41 PM
|
0
|
0
|
2124
|
|
POST
|
@nadja Pro "module" to update is "esri_core_module" This is the module that creates the "Insert" tab on the Ribbon with the "Project" group. So in your DAML (line 27), use this: <updateModule refID="esri_core_module"> instead of <updateModule refID="esri_core_insertTab">
... View more
07-15-2024
11:28 AM
|
0
|
1
|
1226
|
|
POST
|
Check out the ProSnippet: Geodatabase wiki. It has some good info on how to work with accessing the feature classes from the underlying Geodatabase - given the URL that you already have. Please reach out if you get stuck.
... View more
07-12-2024
09:22 AM
|
1
|
0
|
1740
|
|
POST
|
Note: The attachment above had a version of 3.4 in the config.daml. I have update the sample attachment now with version 3.3
... View more
07-11-2024
10:57 AM
|
1
|
1
|
1771
|
|
POST
|
Hi @AbhijeetNandeshwar1 Here is a sample attached. Search for TODO to see the specific items for the drag/drop implementation.
... View more
07-10-2024
09:49 AM
|
1
|
0
|
1811
|
|
POST
|
Hi @RITASHKOUL I afraid there is no easy workaround for this at this time. I will follow-up as soon as I have a timeline when this will be supported. Thanks! Uma
... View more
07-08-2024
09:52 AM
|
0
|
3
|
3179
|
|
POST
|
@RITASHKOUL After speaking with the Reports dev team, CreateReport method does not currently support "Custom Report Templates".
... View more
07-05-2024
08:16 AM
|
0
|
2
|
3270
|
|
POST
|
Thanks for the detailed explanation. I see the same behavior. Thanks for reporting this one. I will post back if I can provide a workaround.
... View more
07-05-2024
06:01 AM
|
1
|
1
|
3286
|
|
POST
|
@RITASHKOUL I am trying to repro your issue with the custom template - and to create a report view from this template that uses a standalone table. Can you please give me some info on what data you are adding to the Report Header? Some code snippet and images to explain would be good too so I can repro the issue. Thanks! Uma
... View more
07-04-2024
07:59 AM
|
0
|
1
|
3327
|
|
POST
|
It seems you have introduced a dependency on a specific version of Log4Net into your addin assembly. If your addin depends on a specific version of a 3rd party dll, the addin is responsible for deploying its dependencies. You can add the specific dll of log4net into your addin as content and it will be deployed to the addin assembly cache where it can be resolved by the .NET assembly resolver. The other alternative is to upgrade your addin to use the latest version of Log4Net via the NuGet.
... View more
07-03-2024
11:19 AM
|
0
|
1
|
3581
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | a month ago | |
| 1 | 01-21-2026 10:48 AM | |
| 1 | 09-18-2025 03:09 PM | |
| 1 | 11-04-2025 08:25 AM | |
| 1 | 09-23-2025 09:31 AM |
| Online Status |
Offline
|
| Date Last Visited |
a month ago
|