Hi,
You can select the arrows when the component mounts and attach event listeners for mouseover and in them manually dispatch mousedown event.
NOTE THAT THIS IS A WORKAROUND, we support only click scrolling by default
mounted() {
Array.from(
document.querySelectorAll(“.jqx-tabs-arrow-background.jqx-widget-header”)
).forEach((arrowWrapper) => {
arrowWrapper.addEventListener(“mouseover”, (e) =>
e.currentTarget.dispatchEvent(new Event(“mousedown”))
);
});
}
Best regards,
Svetoslav Borislavov
jQWidgets Team
https://www.jqwidgets.com/