Pass each cell value of the table to the microflow

0
Hi, I wanted to pass each cell value of the table into a microflow on click of each cell element in a table. Please suggest me how this functionality can be achieved.  Thanks in advance.
asked
1 answers
1

This depends what kind of table you are using.

Data grid, Data grid2, listview, table widget,….

In a Data grid this can be achieve by using the default button behavior.

  1. set your desired click action in the data grid properties
  2. Set the button as default button and select the microflow you want to trigger
  3. Create a microflow with an input parameter of the type entity you use in the grid.

 

In a listview and Data grid 2, you can set an on enter action in on all input widgets, triggering the same microflow as in Data grid example

answered