Refresh class in microflow

5
A JAVA action changes some objects of let's say class (read meta object) "A". I want to refresh the client datagrid that shows the A instances. Is there a way to refresh a class (list of objects) width microflow? If not, can JAVA do the job?
asked
2 answers
5

I think this is what you are looking for in Java:

this.addRefreshClass("Module.Object");

eg. this.addRefreshClass("VragenlijstCuratief.VraagGebruiker");

answered
0

When you enable the "Refresh in client" option of a Create Object or Delete Object activity that operates on your object type, it will generate a 'class refresh' in the client, which will refresh datagrids showing objects of that type. If you have no Create or Delete activity in your microflow yet, as a workaround you could create and then delete an object to trigger this behavior.

answered