Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,12 @@ The optional query parameter allows you to filter selector results:
| `name` | `string` | Filter by name | Documents, Entities |
| `sdkName` | `string` | Filter by SDK name (for example, `Pages$Page`) | Documents only |


## Preselecting Elements

It is also possible to pass an element ID as the `selectedElementId` property of the `Selector`. This ID can be either a Document, an Entity, or a Module. If a Document or Entity, then the corresponding node on the selector form will show as selected.
If the elementID belongs to a Module, then the corresponding node will appear selected and already expanded. It will also enable the `New` button right away, allowing the user to immediately create a new document in that selected module.

## Extensibility Feedback

If you would like to provide additional feedback, you can complete a short [survey](https://survey.alchemer.eu/s3/90801191/Extensibility-Feedback).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ numberless_headings: true

These release notes cover changes to the [Extensibility API for Web Developers](/apidocs-mxsdk/apidocs/extensibility-api/).

## Version 11.14.0

* A module ID can now be passed to the element selector for the `selectedElementId` property, and the corresponding module will be preselected and expanded. This will allow the user to directly create a new document of the desired type in that module.

## Version 11.12.0

* We removed the elements helper methods (`add*()`, `get*()`, `getContainer()`, and `delete()`) from the Model API types.
Expand Down