Input range not working on iscroll 5

I have a type of input type that does not work properly (does not slip) if I define IScroll in the same input container.

I added a preventDefaultException exception: {tagName: / ^ (INPUT | TEXTAREA | BUTTON | SELECT | DIV | LABEL) $ /}, but still does not work.

Any idea how to solve?

EDIT : adding eventPassthrough: 'horizontal' enabled it.

+4
source share
2 answers

Adding eventPassthrough: 'horizontal' resolved it.

+2
source

Try using

preventDefaultException: {tagName: /.*/}

also comment on css properties

  /*  -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  */
+1

Source: https://habr.com/ru/post/1543463/


All Articles