Hi Kenneth,
You can use the open event to disable the element on your own. Please refer to the code below,
|
this.onOpen = function(e){
e.popup.element.querySelectorAll('.e-list-item')[0].classList.add('e-disabled');
e.popup.element.querySelectorAll('.e-list-item')[0].classList.add('e-overlay');
}
|
In the above code, we get the popup list in the open event args using the e-list-item class, and the first item is disabled.
Regards,
Sevvandhi N