Set value of textbox search by microflow

0
Hi, I’m looking for a way to set a value to the ‘textbox search’ widget (part of listview controls) using a microflow. I want the value to be set after an onClick event within a listview item. Is it possible using existing App Store tools or perhaps some JS? Any help is appreciated :)
asked
1 answers
2

Get the html/javascript widget from the appstore.

This will allow you to use jquery to add on click events to elements, for example:

$("#the id of the element").on("click", function(){ myFunction(); });

Then in the function target the element for the textbox search to change it’s value.

something like

$('input[name=name of the widget]').val('your value here');
answered