widget not destroyed, check parents uninitialize method

2
I wrote a widget and I get this error: widget not destroyed, check parent's uninitialize method I do have a destroy method implemented, and it get's executed, but I still get this warning. And since I've upgraded my project to Mendix 5.20, it appears that my widget get's duplicated after a refresh in client action. What else do I need to destroy?
asked
1 answers
0

I've came across the same situation. Used uninitialize: function() { //is there anything left to destroy? } in parent script instead of

destroy: function() { //is there anything left to destroy? }

answered