Boolean Value display

0
heii I want to display a boolean value from a microflow in Mendix, how can I do this?  I would like to display a button or a check box, in which context do i have to put these items?
asked
4 answers
0

 

You can just use your $produktionValueBoolean there 

answered
3

Hi,

I thought so you created attribute with data type boolean, using data view keep radio button or checkbox according to your need then if you want to map that attribute using microflow, then pass parameter of current object then map boolean value using change object then show that value using show message. 

answered
0

What does your dashboard consist of? Is it a (non)persistent entity containing several values? In that case you could add a boolean to that dashboard entity which will be filled based on the logic you have shown in the picture (eg call it in the datasource microflow)

answered
0

Like micha said, either extend the entity which you want to show with a boolean, or create a non persistent entity on your model and create it in this microflow with a boolean as attribute, send that item to the page and use it there.

answered