-
Notifications
You must be signed in to change notification settings - Fork 190
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kie-issues#1595: Sandbox: Add "Open in Boxed Expression Editor" button in the DMN Runner form output cards #2720
base: main
Are you sure you want to change the base?
Conversation
…n in the DMN Runner form output cards Closes: apache/incubator-kie-issues#1595
@@ -51,6 +51,7 @@ export interface EditorInitArgs { | |||
|
|||
export interface KogitoEditorEnvelopeApi extends KeyboardShortcutsEnvelopeApi, I18nEnvelopeApi { | |||
kogitoEditor_contentChanged(content: EditorContent, args: { showLoadingOverlay: boolean }): Promise<void>; | |||
kogitoEditor_openBoxedExpressionEditor(nodeId: string): void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method is specific to the DMN Editor so shouldn't be here in the generic Editor's interface.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, thank you @tiagobento , @ljmotta gave me a tip to look on:
YardChannelComponent
WebToolsEmbeddedEditor
yardTextEditor_moveCursorToPosition
working on it currently
Closes: apache/incubator-kie-issues#1595
TODO
EditorEnvelope.init
occurrencesThis PR adds a button for opening the boxed expression editor for the desired decision node from the DMN Runner form. See the button
Open New Decision expression
in the screenshot below.