Dan,
In your microflow, you could:
Hope that helps,
Mike
You can just write some Java for that, iterate over the imendixobject’s attributes and set to null, then you dont have to fiddle with the microflow when adjusting your attributes.
// BEGIN USER CODE
for(java.lang.String k:obj.getMembers(this.getContext()).keySet()){
try{obj.setValue(this.getContext(),k,null);}catch(Exception e){}
}
return true;
// END USER CODE
@Mendix: Fix your code editor
The easiest way is to just change the object in a microflow and empty all the attributes and refresh the page checked in the Change activity.
Empty all attributes is not an existing feature.
Thanks all for the answers