Categories | Question details Back To List | ||
combobox move When moving the scroll bar, combobox is also moving along. I would like to know how to make the combobox does not move. Answer posted by Support on Dec 04, 2008 02:56 You can add onScroll event hander and close combobox from it dhtmlxEvent(document.body,"scroll",dhtmlXCombo.prototype.closeAll); Instead of document.body , you can use container which is scrollable in your case. |