Run microflow without being a button?

0
Hi, I'd like to run a microflow when the page gets opened. Whenever I drag the microflow to the page it makes automatically a button. How would I run a microflow when the page opens? Thanks in advance.
asked
3 answers
7

Do not use the open form function, but use a microflow where in the end you just open de form . You can then do all the things you like to do in the microflow before opening it.

Regards,

Ronald

answered
0

You can use the microflow timer and set it to run once after a short time.

answered
0

Try calling the MF via the API within the HTMLSnippet Widget (Javascript Content Type).

You can use Jquery and try something like this..

$( document ).ready(function() { mx.data.action ( { params : {actionname : "ModuleName.MicroflowName" } } ); } ) ;

answered