Persistent scroll bar

Good day!

How to implement persistent scroll bar for a particular scrollview?
This means that scroll bar (x, y or xy) must be always visible (even after mouse out).

[for custom scroll mode (webix.CustomScroll.init())]

Hi @russell

Visibility of our Custom Scroll completely depends on mouse events. Unfortunately, there is no way to make it persistent (emulating related mouse events can affect other features, e.g. focusing).
Modern desktop browsers support styling of native scrollbasrs (here’s an example at CodePen from this article), and this could be the most feasilble solution to get custom yet always visible scrollbars.

Thank you! I understood.