Configure custom widget to get input from Microflow

0
I am trying to create a custom dropdown widget which gets it dropdown values from a microflow.  I tried adding below property . It gives me an error saying "Microflow/Nanoflow properties are not supported by pluggable widgets (pluginWidget="true"). Use action property instead.”  <property key="onClearMf" type="microflow" required="false"> <caption>On Clear</caption> <category>Behavior</category> <description>Microflow to run</description> <returnType type="Void" /> </property>
asked
1 answers
0

Based on what you mentioned, you want to get the data from microflow. Which means, you want work with dataSource. 

https://docs.mendix.com/apidocs-mxsdk/apidocs/property-types-pluggable-widgets#datasource

Microflow type was earlier used for actions and in latest version, it was named as ‘action’ itself.

https://docs.mendix.com/apidocs-mxsdk/apidocs/property-types-pluggable-widgets#action

 

answered