Search code examples
extjstouchtouchscreen

How to disabled touch in ExtJs 6


Lately, I am testing some functionalities on desktop with touchscreen. I realize the ExtJs code wasn't working right on them because of some ExtJS styles. Can I just disable the touchscreen for the ExtJs framework?


Solution

  • Here what I found: Yes, you can.

    There is a way to disable the touch behavior and you should do it before the framework renders its content.

    //ExtJs 6.0.2
    Ext.supports.Touch = false;
    Ext.supports.touchScroll = 0;
    
    
    //ExtJs 6.5.3
    Ext.supports.Touch = false;
    

    ExtJs 6.0.2 fiddle example.

    Links related: