how to get the value of the button?

0
There are many buttons on the screen, and the captions of each button are different. After clicking this button, a microflow is called to obtain the captions of this button in the microflow. Is there any way, for example, after clicking the P201 button, the values of P201 can be obtained in the microflow. Thank you.
asked
1 answers
1

Are you not having dedicated microflows behind each button?

 

if yes then you can have a variable with the value of the button caption :)

 

if no then you may have to explore on the Javascript Action where in from the buttons DOM you can get its value (i.e. innerHtml)

answered