Pop up scroll issues

Hi,
i have window which body is from and and that form fields have pop up when the pop up is opend and when i scroll the window the popup wont close it will be visible i want the solution for pop to be closed when we scroll the window

You can use native HTML of webix onAfterScroll event

form.attachEvent("onAfterScroll", function(pos){
     webix.callEvent("onClick", []); //hide all popups
});

will it work for date picker and rich select because in my application i am facing the same issue

Above line will close all popup elements, including the popup parts of date picker and rich select elements.

http://webix.com/snippet/26244879