What replaces addRefreshClass in Mendix5?

1
Hi, I'm trying to get rid of all the deprecated methods from migrating to version 5.0.0. in Mendix and I cannot quickly find the replacement for addRefreshClass. Is there another method or another way to achieve the same result? Thank you!
asked
2 answers
2

You should be able to use the FeedbackHelper class that does this for you. From the javadoc:

/**
 * Add refresh class object feedback to this action
 * @deprecated use class FeedbackHelper instead with similar method name, but starting with IContext param
 * @param objectClass the name of the class to refresh
 */

I see that the apidocs are not properly generated, will ask someone to take a look at the build process.

answered
0

Have you tried:

addRefreshObjectFeedback(IMendixIdentifier id)

EDIT: Forgot documentation

answered