Is there a way to force a refresh from the client side without using a microflow to refresh the context entity?
EDIT: After looking through the mendix javascript files i found that mx.data.sendClassUpdate(entityType,callback) is the javascript equivalent version of the java version to update class and the mx.data.update() can be used to update a specific version. Because i already have the new information i think that this will work, but i will keep you updated
Edit2: I guess that using mx.data.update should suffice as well, but this does not trigger nested dataviews to retrieve their data again. Is there perhaps someone from Mendix who wants to share on how to achieve this?
I did find a workaround by using a micrfolow as datasource, somehow the refresh of the above entity does trigger an update of the microflow and all below items. But i'm also intrested in finding a way to update the nested dataviews as well.