|
POST
|
Hi @UlrichEgger Here are a couple of suggestions, might not give you exactly what you want, but there are some performance improvements possible: 1. We recently added functionality to add multiple layers at once. Some information for this is here: Loading multiple layers 2. You can also create your own "operation" and add it to the Undo\Redo stack. I am attaching a small project that illustrates this. Note: The entries on the Undo stack are deconstructed for each task in the operation, but you do get a convenient custom operation name that you can click on.
... View more
02-11-2025
03:18 PM
|
1
|
3
|
1155
|
|
POST
|
Are you referring to this attribute window? If so, here is another approach - you can create your own custom attribute window in Pro. It gives you an opportunity to design your own UI component, while integrating the Pro user control (in your UI) that displays the attributes of the selected features. Here is a sample that shows this: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Editing/EditorInspectorUI
... View more
02-11-2025
09:26 AM
|
0
|
0
|
440
|
|
POST
|
Here is the update on this issue. At 3.4, the ribbon buttons are not properly stretching the image when using a small icon (16x16) in a place requested for a large icon (32 x 32). The ImageSource does not stretch to fill the space. As a workaround, two images can be provided in the addin - for smallimage and largeImage daml attributes. ArcGIS Pro comes with many out of the box images. This community sample allows you to see the entire list: https://github.com/Esri/arcgis-pro-sdk-community-samples/tree/master/Framework/ProIcons If you use the available ProIcons, you can simply copy the icon name (in the image below) and use it in the daml. Almost all icons will have the 16 and 32 sizes. Note: this image below is available if you use the community sample referenced above.
... View more
02-07-2025
10:39 AM
|
1
|
1
|
2078
|
|
POST
|
@JeffreyBurka Couple of thigs to check - 1. In the config.daml, what is the size you have used for the buttons in the "group" element - <group id="AddInB_Group1" caption="Group 1" appearsOnAddInTab="false">
<!-- host controls within groups -->
<button refID="AddInB_ButtonAddInB" size="large" />
</group> 2. When you elongate the Pro UI, are you able to see the large image for your button?
... View more
02-06-2025
01:27 PM
|
0
|
0
|
2087
|
|
POST
|
Hi @cdevault_pickett Can you please check the following on this machine: Check this location to see if you see RegisterAddIn.exe - C:\ProgramData\EsriProCommon If it is not there, is it in the Pro install location, bin folder? Thanks Uma
... View more
02-06-2025
01:11 PM
|
0
|
1
|
1164
|
|
POST
|
Would it be possible for you to share your small and large images? I used the Pro Icons (FireDragon16 and 32) and couldn't repro the issue.
... View more
02-05-2025
11:32 AM
|
0
|
0
|
2105
|
|
POST
|
Hi @cdevault_pickett Can you please give me a little more info about your add-in project? 1. Are you using the Esri.ArcGISPro.Extensions30 NuGet in the project? 2. What is your Pro version? Is it 3.3.3? Thanks Uma
... View more
02-05-2025
11:16 AM
|
0
|
1
|
1205
|
|
POST
|
Hi @MK13 Here is a code snippet - I will add this to our docs too for posterity. // Create EsriHttpClient object
var httpClient = new EsriHttpClient();
// Upload CSV file to ArcGIS Online
var itemToUpload = ItemFactory.Instance.Create(@"C:\Data\AddToMapCustomItem\AlaskaCitiesXY.csv");
string[] tags = new string[] { "ArcGIS Pro", "SDK", "Internal Demo" };
UploadDefinition uploadDefinition = new UploadDefinition(
ArcGISPortalManager.Current.GetActivePortal().PortalUri.ToString(),
itemToUpload,
tags
);
var result = httpClient.Upload(uploadDefinition);
if (result.Item1 == false)
return;
Thread.Sleep(2000);
... View more
01-28-2025
10:31 AM
|
1
|
1
|
1179
|
|
POST
|
@MK13 You will have to use EsriHttpClient to upload the csv file. I don't have a code snippet for it yet - will try and share some code in the next couple days.
... View more
01-22-2025
01:14 PM
|
1
|
0
|
1249
|
|
POST
|
@MK13 As you might already know, a plugin data cannot be shared as a web layer. But, a csv file can be shared to an ArcGIS Enterprise portal- Here is a document that lists all the supported items on an ArcGIS Enterprise portal: Content you can add in the ArcGIS Enterprise portal
... View more
01-22-2025
09:55 AM
|
0
|
1
|
1272
|
|
POST
|
@MK Can you please explain a little more? You have custom data in a csv?
... View more
01-21-2025
02:15 PM
|
0
|
1
|
1293
|
|
POST
|
@ModyBuchbinder This happens mainly when the button's class (or code behind) is not found by the ArcGIS Pro add-in framework. Hover over the button (while gray) with your mouse. In many cases you will see info on what class it is looking for. Then on a developer machine, check if the button class matches the definition in the config.daml. The namespace of your button class should match the namespace defined in the DAML. That could be another thing to check.
... View more
12-17-2024
09:13 AM
|
0
|
0
|
472
|
|
POST
|
Hi @JonathanDewalt
I don't see the attached sample xaml with the 6 images. Can you please attach it again?
Thanks!
... View more
12-12-2024
10:15 AM
|
0
|
1
|
1505
|
|
POST
|
Hi @dd_dev
Would it be possible to reach out to Esri support for this one? I am not able to repro this.
Thanks!
Uma
... View more
12-05-2024
10:46 AM
|
0
|
0
|
551
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | 09-18-2025 03:09 PM | |
| 1 | 11-04-2025 08:25 AM | |
| 1 | 09-23-2025 09:31 AM | |
| 1 | 11-20-2024 10:50 AM |
| Online Status |
Offline
|
| Date Last Visited |
yesterday
|