Variables in Dashbord

0
Hi all. I am new on Mendix and I didnt find an answer to a smal problem. I want to display a sum from a list, lets say summary of pricelist. I get these info with a microflow and at the end I have a variable $SumCurrentPrice. This value I want to display on an simpl page whitch is shown on load. Alfred
asked
1 answers
1

Dear Alfred,

You will need to add a dataview on the page and use microflow as the source of the dataview. You will also need a non-persistent entity with an attribute of the type decimal. 

Inside the microflow, create the object of this new type, change the value of the attribute as this variable and pass the object as return parameter in the end event of the microflow

On the Page, now you can display the attribute of the non-persistent entity you created.

Hope this helps.

-Shekhar

answered