Hello,
I would like to know how I could show an embedded web page based on user selection / criteria within a low code app. (or an interactive automation script opened from the low code app)
For example: a user selects some key criteria: "data not updating", "element" and based on this I want to show the troubleshooting page:
https://docs.dataminer.services/user-guide/Troubleshooting/Troubleshooting_Flowcharts/Troubleshooting_Critical_Issues/Troubleshooting_Critical_Issues_Data_Not_Updated.html#element
Hey Mieke,
As Robin mentioned, it is possible to use a feed in the Web component. This can be used together with the Script outputs feed from the button component to dynamically change the URL based on the script output.
In my example my Web component starts from the docs homepage. Then I enter a path I want to display & execute a script that takes this as an input. The only thing the script does is return the path again as 'param1' . In your use case there would be some logic deciding what path to return. When the script finishes, the URL in the web component is updated with the path and navigates to it.
Here it is in action
Web component URL
Script outputs can be added to any script by adding _engine.AddScriptOutput(NAME, VALUE). It is this NAME that you have to use in the feed link.
I have updated the answer with a link to the docs for the script outputs.
Hey Mieke,
Since 10.4.5.0 you can use feeds within the Web component using the "{Feed.xxx}" notation.
I did however not find a way to pass a search value via the URL to our docs.
Greetings,
Robin
I’ve also seen this, and tried to use a text box as Feed. However, there seems to be no way to fill in the Feed (e.g. the text box) dynamically based on logic as there is no way to return data from a script to the low code app.
I’ve tried using an Element > Table Param in between, but I failed to find a means to identify the user who is selecting so the Feed for that user. Low code app would need to know at run time what row to select as Feed input.
I guess there is no way to do what I want with the current features in both low code & interactive automation.
Hi Wout, can you share the automation script?
or documentation on how to return data?
That is the part I’m missing to avoid manual copy – past in the input box.