Custom String Widget

0
I'm using an older module named "SimplePushNotifications" in my Mendix application, but the CustomString widget it utilizes is no longer supported in my current version (10.6.5). I'd like to know if there are any alternatives that can trigger a microflow and display only a string value on the page. Your guidance is much appreciated.     Matthew Mooney
asked
3 answers
0

Matthew,

You can use a Call Microflows button, set it to link (instead of button) and style the text to make it black ( or whatever color you choose).

Mike 

answered
0

Hi Matthew,

 

Take a container -> onClick of this container call your microflow & inside this container take one text & pass the custom string value by {1}.

 

Hope you like the answer.

answered
0

You could use a dataview with data source nanoflow / microflow, return a generic non-persistable object with a string attribute filled with your string and show that on the page. Be aware that you need to configure user roles on the nanoflow / microflow and entity access on the object.

answered