How to customise exposed activity UI in Studio Pro

0
I am creating a module that expose a microflow as an activity in Studio Pro. Is there any way to customise the UI for calling this activity ? Right now, it looks like a standard "Call microflow" activity, and I would like to be able to control how the differents parameters are set, exactly the same than the "Logging" activity.  That is, I would like to get an Enum directly selectable for the first parameter, a large textbox for a String param, and more important to be able to pass a variable number of argument without needing to create/add to a list beforehand.   The only customisation that seems to be available is the icon, and I don't find how to replicate the behavior of native action for this. Example of what I would like to achieve : Example of what I get now :   I there any way to achieve this or should this feature be requested for a future release ?  
asked
1 answers
0

If you want to dynamically call microflow then you'll need to refer to java actions.

For the list maybe using a name/value pair would be an option to create a more generic list and then you'll need to define the logic around that in the java action or microflow that you are calling. For examples of running microflows from java have a look ate the availble actions in the community commons module

answered