Add atrribute to dialog on Mendix

0
Hi guys,   Do you know if it's possible to add an attribute "$Company/Name" (the company name in this case) to the dialog (next to "Edit company")?
asked
2 answers
1

Hi Alejandro,

 

As far as I know, it is not possible to add dynamic data in your page properties. 

 

However, you can choose to override the page title in the action before you come to this page.

answered
4

Hi Alejandro,

If you want to Rename the page on the base of an attribute(Dynamically) you can do it by, placing a dataview of on the page which is e populated by a nanoflow.

Then in the Nanoflow itself call a javascript action which sets the title of the page.

Document.title=$object/attribute+’some hard coded stuff’

 

Hope it helps!

answered