Hello Community,
we have seen a wired bug that has driven us and the customer mad.
As you noticed by the title, all the lists that will appear from a combobox, select or simply the suggestionItems of an Input field will be "reopened" after they have been closed by the user and also a navigation to another view has happened.
One additional info: This only happens if the user clicks at least once on one item but the pre selected one, so we have a change of the value.
See sceenshots below



As you can see from the third picture, the dialogs have been opened. They can be closed again by clicking on one element. As far as I know, it does not have any effect on further actions within this app. Still, its very annoying and reduces UX heavily.
So far my attemtemps to fix this issue:
1. Destroy the view in onExit() method of the controller. -> Does not work
2. Remove the DOM Objects in the onRouteMatched Method -> This kind of works but its not generic enough to just apply this to everything:
_onRouteMatched: function () {But this only works until you reopen the create view again because it will look like this:

3. instead of element.remove() from the second idea: element.style.visibility = "hidden"
--> The Create view wont be rendered because everything is hidden
Any further suggestions or ideas to fix this issue?
Thanks
Jan