Skip to content

Commit 692098b

Browse files
Add feedback survey
1 parent ee9734b commit 692098b

7 files changed

Lines changed: 28 additions & 55 deletions

File tree

content/en/docs/apidocs-mxsdk/apidocs/studio-pro/extensibility-api/_index.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,4 @@ description_list: true
1717

1818
Extensions are self-contained modules which users can add to Studio Pro. This means that with extensibility you can add new features and functionality to Studio Pro. The Extensibility API is an API that allows developers to interact with a curated list of internal systems of Studio Pro. This documentation provides guides and reference documentation for the Extensibility API.
1919

20-
The API is provided in two flavours. C# and web based (via Typescript).
21-
22-
For more information on each version of the api please see:
23-
24-
* [C# Extensibility API](/apidocs-mxsdk/apidocs/extensibility-api/csharp/)
25-
* [Web Extensibility API](/apidocs-mxsdk/apidocs/extensibility-api/web/)
20+
The API is provided in two flavours. C# and web based (via Typescript).

content/en/docs/apidocs-mxsdk/apidocs/studio-pro/extensibility-api/web/_index.md

Lines changed: 0 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -10,50 +10,3 @@ description_list: true
1010
{{% alert color="warning" %}} This feature is in beta. For more information, see [Beta Releases](/releasenotes/beta-features/). {{% /alert %}}
1111

1212
{{% alert color="info" %}} For information on new releases of the Extensibility API, see [Web Extensibility API Release Notes](/releasenotes/studio-pro/web-extensibility-api/). {{% /alert %}}
13-
14-
## Introduction
15-
16-
Extensions are self-contained modules which users can add to Studio Pro. This means that with extensibility you can add new features and functionality to Studio Pro. The Extensibility API is an API that allows developers to interact with a curated list of internal systems of Studio Pro. This documentation provides guides and reference documentation for the Extensibility API.
17-
18-
If you need to add your own custom UI to Studio Pro, you can achieve this using web technology. Your web-based UI will be rendered in Studio Pro using a hosted web view, the API provides communication functionality between your web UI and the C# extension logic.
19-
20-
## Prerequisites
21-
22-
* You need at least a basic understanding of the Mendix platform.
23-
* You need some understanding of the Mendix Model.
24-
* You need to have some C# development experience. Extensions are developed using [C#](https://docs.microsoft.com/en-us/dotnet/), and compiled into a `.dll` assembly file.
25-
26-
## Getting Started
27-
28-
For detailed explanation on how to get started with extensions, check out [Get Started with the Extensibility API](/apidocs-mxsdk/apidocs/extensibility-api/getting-started/).
29-
30-
You can also check out our examples and [API reference documentation](https://github.com/mendix/ExtensionAPI-Samples).
31-
32-
## How-tos
33-
34-
Here is a list of how-tos for you to begin with:
35-
36-
* [How to create a menu extension](/apidocs-mxsdk/apidocs/extensibility-api/create-menu-extension/)
37-
* [How to create a dockable pane](/apidocs-mxsdk/apidocs/extensibility-api/create-dockable-pane-extension/)
38-
* [How to add a context menu to an entity](/apidocs-mxsdk/apidocs/extensibility-api/create-context-menu/)
39-
* [How to host some web content inside a modal dialog using a modal web view](/apidocs-mxsdk/apidocs/extensibility-api/create-modal-web-view/)
40-
* [How to create microflows for calculations](/apidocs-mxsdk/apidocs/extensibility-api/create-microflows-for-calculations/)
41-
42-
## Advanced APIs
43-
44-
APIs for the Mendix platform's advanced users:
45-
46-
* [Untyped Model Access API](/apidocs-mxsdk/apidocs/extensibility-api/extensibility-api-howtos/untyped-model-access-api/)
47-
48-
## Learn More
49-
50-
You can dive into the following topics in depth:
51-
52-
* [What are the extension points](/apidocs-mxsdk/apidocs/extensibility-api/extensionpoints_intro/)
53-
* [What are the Extensibility API services](/apidocs-mxsdk/apidocs/extensibility-api/introductions/services/)
54-
* [How to access the Studio Pro from the Model API](/apidocs-mxsdk/apidocs/extensibility-api/interact-with-model-api/)
55-
* [How to host web content via a web view wrapper](/apidocs-mxsdk/apidocs/extensibility-api/introductions/web-views/)
56-
* [How to build a Todo example extension](/apidocs-mxsdk/apidocs/extensibility-api/extensibility-api-howtos/build-todo-example-extension/)
57-
* [What are extension points](/apidocs-mxsdk/apidocs/extensibility-api/extensionpoints_intro/)
58-
59-
## Documentation in This Category

content/en/docs/apidocs-mxsdk/apidocs/studio-pro/extensibility-api/web/get-started.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,11 @@ Using this guide we have:
123123
- 3. We built the extension and installed it within our App
124124
- 4. We tested our extension from within Studio Pro.
125125

126+
# Extensibility Feedback
126127

128+
If youd like to provide us with some additional feedback you can complete a small [Survey](https://survey.alchemer.eu/s3/90801191/Extensibility-Feedback)
129+
130+
Any feedback is much appreciated.
127131

128132

129133

content/en/docs/apidocs-mxsdk/apidocs/studio-pro/extensibility-api/web/web-extensions-howtos/dockable-pane-api.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,3 +296,8 @@ Our loaded method should now look like this:
296296
You should now have a new dockable pane with its own user interface which you can modify as you like.
297297
You can also open and close the dockable pane from a menu.
298298

299+
# Extensibility Feedback
300+
301+
If youd like to provide us with some additional feedback you can complete a small [Survey](https://survey.alchemer.eu/s3/90801191/Extensibility-Feedback)
302+
303+
Any feedback is much appreciated.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro/extensibility-api/web/web-extensions-howtos/local-app-files-api.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,8 @@ The App files api allows you to modify files within your applications folder. It
102102

103103
You should now be able to save, load and delete files from within the app folder using an extension.
104104

105+
# Extensibility Feedback
105106

107+
If youd like to provide us with some additional feedback you can complete a small [Survey](https://survey.alchemer.eu/s3/90801191/Extensibility-Feedback)
108+
109+
Any feedback is much appreciated.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro/extensibility-api/web/web-extensions-howtos/menu-api.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,4 +159,10 @@ export class MyComponent implements IComponent {
159159

160160
You can see here that the state of the menu is now disabled and its caption has also been updated. Only caption and enabled state are currently supported for updating.
161161

162-
![Disabled Menu](/attachments/apidocs-mxsdk/apidocs/extensibility-api/web/menus/disabled_menu.png)
162+
![Disabled Menu](/attachments/apidocs-mxsdk/apidocs/extensibility-api/web/menus/disabled_menu.png)
163+
164+
# Extensibility Feedback
165+
166+
If youd like to provide us with some additional feedback you can complete a small [Survey](https://survey.alchemer.eu/s3/90801191/Extensibility-Feedback)
167+
168+
Any feedback is much appreciated.

content/en/docs/apidocs-mxsdk/apidocs/studio-pro/extensibility-api/web/web-extensions-howtos/messagebox-api.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,10 @@ As you can see below, you can add extra information which will show up in the ex
8080

8181
![Error](/attachments/apidocs-mxsdk/apidocs/extensibility-api/web/messageBoxes/error.png)
8282

83-
![Warning](/attachments/apidocs-mxsdk/apidocs/extensibility-api/web/messageBoxes/warning.png)
83+
![Warning](/attachments/apidocs-mxsdk/apidocs/extensibility-api/web/messageBoxes/warning.png)
84+
85+
# Extensibility Feedback
86+
87+
If youd like to provide us with some additional feedback you can complete a small [Survey](https://survey.alchemer.eu/s3/90801191/Extensibility-Feedback)
88+
89+
Any feedback is much appreciated.

0 commit comments

Comments
 (0)