Draft the data like mail

0
How to draft data  and save the data(like mail drafting ) any other way to implement the draft in mendix(*no duplicate data ) (*using non persistable entity to save the draft data) example: forum draft question
asked
2 answers
0

I would recommend you to make a status attribute (enumeration) in the entity of your object. then I would commit the object at the proper time (at every change of an input in your page), with the status “draft” of your enumeration. 

When you save the data, I would change the status to “complete”

 

Good luck

answered
0

Drafting and saving is in Mendix creating an entity and commiting the entity.

If you just create an entity it is drafted.

At any moment you want to save it, just commit it at that moment.

answered