When opening the dropdown I need the scroll to go automatically to the option previously selected by the user,
currently it stays at the top of the list
currently we are trying to search by the className and triggering a scrollIntoView but it is not working
open: function(args) {
const element = args.popup.element as HTMLElement;
const aux = element.lastChild;
const list = aux.firstChild as HTMLElement;
const ulList = document.getElementById(list.id);
const selectedOne = ulList.getElementsByClassName('e-active')[0];
selectedOne.scrollIntoView();
},