How send param to a microflow or nanoflow from custom plugable widget?

0
Hi guys, I searched but not find how do this. I created a custom widget, and I execute the nanoflow or microflow action correctly, but I don´t know how send parameter. Can be a string type. Tk´s for your help.   Config on property: Execute:  
asked
1 answers
0

The available parameters to microflows or nanoflows will be the widget’s enclosing data views / list views. So if you need to pass a value to the microflow/nanoflow, you can add an attribute property on the widget. Then you can:

  1. Change the attribute to appropriate value
  2. Execute the action

 

The action will receive the object as a parameter, and in there you can read the value of the attribute.

 

answered