Hi; Let me jump in the immediate use case here.
I have a list of channels to select from in low code apps; I have a feed which shows me the multicast
feedA: 239.1.1.11:1234
The expected parameter input is: udp://239.1.1.11:1234
how do I combine a set string with a feed in the low code apps option?
I was hoping to do something as "userdefinableText"+"FeedValue"
but I do not seem to be able to combine items; or is there another option somehwere?
Use case: select stb; press the "select TV channel" button
select channel and press Retune STB.
Hi Jan Piet,
The easiest solution is probably to adjust your script so that it reads in the value as is and prepends the 'udp://' text to the value. You could make it conditional so this only happens when the 'udp://' prefix is not already available.
If this were not possible then I currently only see a solution in GQI. With GQI you can transform your parameters in any way. For this case you could use a 'Column manipulation' of type 'Concat' using the following format 'udp://{0}'. The GQI visualizations expose a 'Query rows' feed which represents the selection. You can access the cell of a row by providing the correct column name in the feed configuration.
Hi Jan Piet,
As far as I'm aware you cannot prepend or append anything to a parameter when selecting a feed.
I would suggest to add an additional parameter and combine both of them in your automation script.