You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a way to execute command palette's vrealize: Run Action with input parameters.
For instance if I have an action sum(x, y) that returs the sum of these two numbers, is there a way to run this action with two input parameters using vrealize dev tools?
The text was updated successfully, but these errors were encountered:
Hi @vkNIL, at the moment the only way to provide the input values is to wrap your action into a parameterless one:
// You can create a wrapper Untitled JavaScript file, and execute Run Action on it.varx=5;vary=10;varresult=System.getModule("com.your.module").sum(x,y);System.log(result)
In a future version, we are thinking to add support for action parameters, and you would be asked to provide values when you execute Run Action.
Is there a way to execute command palette's vrealize: Run Action with input parameters.
For instance if I have an action sum(x, y) that returs the sum of these two numbers, is there a way to run this action with two input parameters using vrealize dev tools?
The text was updated successfully, but these errors were encountered: