Release Notes 1.12
What’s New
Feature Table integration
This release introduces the integration of the Esri Feature Table widget. This allows users to inline edit attributes in the table and to edit attachments and related records directly from the Feature Table. The feature table can be opened from the Result Center (result-ui).
Improved layer control and flexibility
Advanced Editing now provides enhanced control over editing capabilities with layer-specific editing permissions and the ability to react to the editingEnabled
layer property.
You can now configure editing and create operations per layer, providing more granular control over data management.
Enhanced snapping and grid support
Building on previous snapping improvements, this release adds grid snapping capabilities through the integration of the Esri snapping controls widget. Users can also disable self and feature snapping when needed, providing more flexible editing workflows.
Bulk operations and usability improvements
Multiple features can now be deleted at once, significantly improving efficiency for data management tasks. Additionally, the editing interface has been enhanced to always start in the first tab when creating new features, providing a more consistent user experience.
Update Notes
To exclude a layer from editing, the following configuration was previously possible:
{
"id": "mylayer",
"type": "AGS_FEATURE",
"url": ".../FeatureServer/0",
"advancedEditing": {
"allowEditing": false
}
}
As of this release, use the option directly on the layer, as in the following example:
{
"id": "mylayer",
"type": "AGS_FEATURE",
"url": ".../FeatureServer/0",
"editingEnabled": false
}
Deprecations
-
The following configuration will be removed in an upcoming release:
"advancedEditing": {"allowEditing": false}
Changelog
1.12.0
New Features
|
Allow to use existing geometries from OGC API Features layers |
|
[Usability] Always start in first tab when creating new feature |
|
React on editingEnabled layer property |
|
Delete multiple features at once |
|
Allow users to disable self and feature snapping |
|
Allow editing and create-operations per layer |
|
Configure to deactivate rotate and transform |
|
Add internal-flag to internal layers |
|
Hide options menu per configuration |
|
Integrate snapping controls widget to allow using grid snapping |
|
[Feature Table] Integrate feature table widget |
|
[Feature Table] Open Advanced Editing dialog from FeatureTable |
|
[Feature Table] Add bulk action to result-ui to open Feature Table |
Fixed Issues
|
Add geometry tool cannot find 'selectedGeometry' after using clip off geometry tool if no geometry is selected |
|
Tooltip does not disappear |
|
Editing dialogue is broken if you cancel leaving without saving |
|
Tooltip showing [Object object] |
|
ActiveWorkflowType not properly set when switching between features by popup edit button |