mendix logic

0
I want that next input vaule(EmailId) come automatically by entering the value in previous input field(EnterpriseId) with addition of @gmail.com . How can I apply that logic? 
asked
2 answers
0

Hi,

You can use events on the text box if you want to update an attribute. Also see https://docs.mendix.com/refguide/text-box/#events.

answered
0

In line with Anthony's answer:

 

Add a OnChange event to your input field and make it call a Nanoflow.

In this nanoflow, set the value of the other attribute to the value of the field.

answered