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
|
614
|
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
|
655
|
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
|
534
|
POST
|
@KarenMeinstein In Visual Studio, what is the value for the "Specific Version" property for these assemblies you have referenced? If you have selected "Yes" then you will receive an error when that specific version is not found.
... View more
07-02-2024
08:59 AM
|
0
|
1
|
552
|
POST
|
We are not able to reproduce this issue using the Log4Net NuGet. Are you using different versions of the NuGet or are you referencing the Log4Net assemblies directly?
... View more
07-01-2024
11:44 AM
|
0
|
3
|
565
|
POST
|
@SteveCole Try using Menus. I was able to see the separators. <menus>
<menu id="damlSeparators_ButtonPalette1" caption="Palette Button 1" >
<button refID="esri_editing_EditVerticesMove"/>
<button refID="esri_editing_EditVerticesRotate"/>
<button refID="esri_editing_EditVerticesScale"/>
<button refID="esri_editing_EditVerticesModifyFeature" separator="true"/>
<button refID="esri_editing_ReplaceGeometry"/>
<button refID="esri_editing_ExtendTrimFeatures"/>
<button refID="esri_editing_LineIntersection"/>
<button refID="esri_editing_SplitCommand" separator="true"/>
<button refID="esri_editing_ClipCommand"/>
<button refID="esri_editing_ExplodeFeatures"/>
<button refID="esri_editing_MergeFeatures" separator="true"/>
<button refID="esri_editing_BufferFeatures"/>
<button refID="esri_editing_CopyParallel"/>
</menu>
</menus>
... View more
06-27-2024
04:19 PM
|
1
|
1
|
294
|
POST
|
@jefferson_bzp You found it! That is the exact reason your MapControl is not seen on a MapViewOverlayControl or on a Embeddable control. Hosting the MapControl in an MapViewOverlayControl or an Embedded control is not supported.
... View more
06-27-2024
01:36 PM
|
0
|
1
|
521
|
POST
|
Thank you @jefferson_bzp This sample helps me see the issue. Will post back with what I find.
... View more
06-27-2024
10:52 AM
|
1
|
0
|
532
|
POST
|
@jefferson_bzp I am not able to repro this. I was able to host my MapControl inside a generic WPF UserControl. The active mapView rendered in this map control. You can add a small addin with your workflow that illustrates the issue if you want.
... View more
06-26-2024
12:16 PM
|
0
|
2
|
586
|
POST
|
@Gurunara A direct query to the data/layer made in the SDK should always hit the database.
... View more
06-25-2024
02:08 PM
|
0
|
1
|
250
|
POST
|
You can use states and conditions. Pro has an internal state defined by this id: esri_core_isSignedIn You can create your own custom condition using this state. New conditions are defined in daml. Then add this condition to your controls. In DAML, create this condition: ...
<conditions>
<insertCondition id="my_condition_Online">
<and>
<state id="esri_core_isSignedIn" />
</and>
</insertCondition>
</conditions>
</ArcGIS> Then, add this condition to your control. Like this in config.daml <tab id="EsriCommunity_Tab1" caption="New Tab" condition="my_condition_Online">
... View more
06-25-2024
12:54 PM
|
1
|
1
|
397
|
POST
|
There are few ways you can accomplish this. One way is to - use Microsoft's Dispatcher class CheckAccess/BeginInvoke pattern to update UI controls, from within a QueuedTask background thread. This pattern is documented quite a bit on Microsoft's site. The Pro SDK team also presented this pattern relating to Pro AddIn development in this Esri Dev Summit 2024 session. This concept is talked about at around 34 minutes in. ArcGIS Pro SDK for .NET: Asynchronous Programming for Addins 2
... View more
06-25-2024
10:24 AM
|
0
|
0
|
245
|
POST
|
@jefferson_bzp EmbeddableControl is the exact way to go. Here are some samples/wikis to help: ProGuide: Embeddable Control MapToolWithEmbeddableControl Dynamic Menu BasicMapTool
... View more
06-21-2024
11:20 AM
|
1
|
0
|
374
|
POST
|
The Set Data Source button on the Layer PropertySheet page can’t be used to browse to your custom bsc file (plugin data). Instead, you will have to make a custom property page that you can insert into Pro’s Layer Property Sheet. (The daml id for this is esri_mapping_featureLayerPropertySheet) <propertySheets>
<updateSheet refID="esri_mapping_featureLayerPropertySheet">
<insertPage id="DAML_LayersPropertySheet_LayersPropertySheet" caption="My custom layer properties" className="DAML.LayersPropertySheet.LayersPropertySheetViewModel" placeWith="esri_mapping_layerSourcePropertyPage" insert="after" >
<content className="DAML.LayersPropertySheet.LayersPropertySheetView" />
</insertPage>
</updateSheet> On this custom page, you can have a button that displays a OpenItemDialog. Set the filter in this dialog to open your bsc files. Then, you can fix the data source on your layer to the selected bsc file by accessing its data connection via the CIM.
... View more
06-20-2024
03:13 PM
|
0
|
0
|
273
|
Title | Kudos | Posted |
---|---|---|
1 | 09-11-2024 09:19 AM | |
1 | 09-11-2024 09:15 AM | |
1 | 08-07-2024 01:53 PM | |
1 | 08-05-2024 09:15 AM | |
1 | 07-30-2024 02:26 PM |
Online Status |
Offline
|
Date Last Visited |
a month ago
|