POST
|
Hi, in addition to the original question. You mentioned Also discovered in testing this issue, that if you have features with differing values in a field, it correctly returns the (Different values) statement in that field if it's a normal field, but not for Calculated fields. Something else that should be considered. Could you clarify exactly what you are seeing? This could be something that may potentially need to be addressed.
... View more
07-08-2025
04:26 AM
|
0
|
1
|
349
|
POST
|
Hi everyone, we addressed this issue in a patch. We should have it out later today. You should be able to pick it up and see the changes by tomorrow. Thank you for letting us know so we could take care of it quickly.
... View more
07-08-2025
04:21 AM
|
2
|
0
|
349
|
POST
|
Thanks for the info, we are currently investigating this and will keep you updated on any updates as soon as possible. - Heather
... View more
07-07-2025
07:38 AM
|
2
|
1
|
414
|
POST
|
Great, glad to hear it's working out. Thanks for letting us know.
... View more
01-24-2025
12:28 PM
|
0
|
0
|
553
|
POST
|
Hi, I don't have a set release date yet but can tell you that we are making good headway and should have something out within the near future. We'll keep everyone abreast of any significant updates on this end. Thanks so much for reaching out.
... View more
01-21-2025
10:34 AM
|
0
|
0
|
398
|
POST
|
Hi @Jade_Freeman this was inadvertantly documented too early. Our devs have been hard at work trying to get this functionality implemented in the not-too-distant future. This widget is just one piece to a bigger project when working with bulk attribute updating. The way that it is currently written, you will not be able to do much with it, nor is any of this fully supported until we get all the pieces implemented and working as expected. We will most definitely keep everyone informed on when this will take place and apologize for causing any confusion.
... View more
01-16-2025
11:14 AM
|
0
|
1
|
461
|
POST
|
Hi @JohnZachariassen I wonder if you are seeing a slight update that was made for localization in 4.31? The SDK will automatically use the locale defined via the lang attribute on the root html element, or the locale of the browser. Do you have the locale defined on the root html element? Another thing to try, is to set the locale using intl.setLocale(). This should take care of it if it is not automatically getting picked up by the browser. Take a look at https://developers.arcgis.com/javascript/latest/localization/ for additional info on it. If it still doesn't work, let us know.
... View more
01-16-2025
09:22 AM
|
0
|
2
|
584
|
POST
|
Hi, so to add to what we already know. Currently, there is no 1:1 alternative to `UpdateWorkflow.edits`. Unfortunately, this was a needed breaking change for some bigger updates that went through with our relationship work we did back with 4.27. With this said, NOT having it documented as such is not ok, and for that we apologize. I wanted to fully confirm my suspicions so I spoke to a member on our development team regarding your approach with using `rootFeature`. Although undocumented, it will do what you need for now. The thing to consider is that this property is designed specifically to access the underlying original (root) feature that began the edit workflow you are currently in. If you have nested workflows, ie. relates, it may not access the feature you intend if you are editing in this scenario since these workflows tend to be nested. For basic updates, this should work fine. We intend on getting a better alternative to this for our next release.
... View more
03-01-2024
10:29 AM
|
0
|
0
|
1156
|
POST
|
@JasonDoingMaps yes, you're correct. I meant to state that we didn't mean to keep this out of the doc. It was inadvertently missed when some updates were made. This should be fixed. As for the underlying issue that you are asking about, ie. what are you now supposed to use in its place? There is a way to do this, but that too wasn't publicly documented. I will be in touch shortly to get some more info to you as I had to confirm some things on our end as well. Again, sorry for the confusion. We'll get it squared away and make sure you have something to work with.
... View more
02-27-2024
08:17 AM
|
1
|
0
|
1200
|
POST
|
This was a mistake on our end. We did document when we deprecated CreateWorkflowData.edits at 4.23. To instead use CreateFeaturesWorkflow.pendingFeatures to access edits made to the workflow data .https://developers.arcgis.com/javascript/latest/4.24/#deprecated-classes-properties-methods-events. I apologize, and agree that this is very confusing. The documentation will be fixed asap as this cannot go as-is. In the meantime, I'm working on getting something to help get you on your way. I just wanted to let you know this omission in doc was not intentional and we'll get it straightened away as a priority. Sorry for all the confusion. I'll post back as soon as I clarify what you need to do moving forward until we get that doc updated publicly.
... View more
02-26-2024
06:53 PM
|
2
|
1
|
1244
|
POST
|
@LefterisKoumis I agree that it would be easier to read if broken out to a separate file. I plan on updating that sample to reflect the use of `editableExpression` as opposed to `editable` and will see if this is doable at that time. Thanks for the suggestion as I'm sure you are not the only one that is interested in seeing how this can work. - Heather
... View more
11-08-2023
05:19 AM
|
0
|
1
|
587
|
POST
|
@LefterisKoumis to clarify further on your questions, * We do have it documented, it's just not as clear and easy to quickly find as I think it should be. The web map specification has a blurb about it at https://developers.arcgis.com/web-map-specification/objects/formFieldElement/, in addition, if you look at this sample https://developers.arcgis.com/javascript/latest/sample-code/widgets-featureform-async/ it has it written in the description. I think it should be easier to find so will add an additional notice in the actual API reference. Regarding the above referenced sample, take note that all field elements that reference a `valueExpression` have editable set to `false`. This is a requirement for working with valueExpressions. * When the `formInfo` was initially implemented, we did not have support for calculations. It was very basic. You could show fields or groupings of fields. The fields could be referenced and you could control whether or not you want to require or make them visible or editable with a simple boolean. This is where the original `editable` and `required` fields were used. These properties were carried over from the legacy FieldConfig class that has since been removed in favor of using the FieldElement. With the advancements made in the form to support calculations for field visibility, editability, requirements, and value expressions, we decided to deprecate the older properties of `editable` and `required` in favor of working directly with their expression. We still honor the deprecated properties for those older maps created before this affect took place. Moving forward though, any new web maps that get written out with form configurations will reflect the expressions Although you may be able to set editableExpression directly to false, it is not the tested and recommended way using a named expression. We recommend setting it to an actual expressionInfo which returns a value of false. I know that that can be cumbersome for small booleans, but just wanted to make sure you were aware of this if you notice any weird behavior. * You asked about "after you create or edit a feature, it would be great to return the editor to its original state and stop the create/edit of other features." This is a result of some worfklow refactoring that needed to happen to support the feature to feature relationship editing. It does not break, but can be irksome if not expecting the UI update. If you click on the back arrow, it should take you to the initial state. We intend on addressing this for the next release. I intend on getting this documentation cleaned up based on some recent feedback, this including removing the deprecated `editable` property on the FieldElement. Thanks again for the input, and please reach out if you have any additional questions. -Heather
... View more
11-02-2023
01:09 PM
|
0
|
1
|
1276
|
POST
|
Hi, you should be able to edit GeoJSONLayers using the editor. I don't know the extent to how you are working with the layers and how you are adding them, (ie. feature collection or referenced by URL), but here is an app showing how to use a GeoJsonLayer referenced by URL and accessed in the Editor. The documentation needs to be updated to include this layer type for the Editor.layerInfos. We will make sure to include that in the next doc update.
... View more
07-28-2023
01:58 PM
|
0
|
0
|
1871
|
POST
|
This has been a back and forth discussion as to the level of what is needed when documenting this. Your question conveys the need to provide additional context. I'll make sure to take your info and let others involved in this know that it is something we should look into further. Thanks again and hope everything works out nicely.
... View more
07-28-2023
01:03 PM
|
0
|
0
|
1457
|
POST
|
Hi, the Webmap version property defines the version of the saved webmap. This version updates every four months (give or take), you should notice that it updates when ArcGIS Online has its update. The latest AGO release in June of this year writes out webmaps with the latest version of 2.28. The version property is required as it's used by other apps working with the webmap. As for your second question on setting a version number from a custom tool which generates webmaps, as long as your tool follows the spec and adheres to this requirements, it should work as expected. So if you are currently using your tool to generate webmap json, the version number should reflect the latest release, as the spec will adhere to what is specified for this release. Hope this can help.
... View more
07-27-2023
07:27 PM
|
1
|
0
|
1471
|
Title | Kudos | Posted |
---|---|---|
2 | 07-08-2025 04:21 AM | |
2 | 07-07-2025 07:38 AM | |
1 | 02-27-2024 08:17 AM | |
2 | 02-26-2024 06:53 PM | |
1 | 07-27-2023 07:27 PM |
Online Status |
Offline
|
Date Last Visited |
07-22-2025
08:51 AM
|