Flex Grid | Filter Issue on Android Devices

Posted by: matth on 28 October 2018, 10:57 am EST

  • Posted 28 October 2018, 10:57 am EST

    Users are reporting a bug that only shows up on Android devices so far. If the user taps on the filter icon the keyboard is initialized, which drops the filter dialog and the keyboard. Making it impossible to use the filter dialog.

    I have taken a project provided by your team setup debugging remotely with iis express and netsh and tested your app on my phone with the same results.

    This is using the latest version and is the same behavior on grids rendered in JS and MVC.

  • Posted 29 October 2018, 7:23 pm EST

    Hi Matthew,

    Thanks for reporting this.

    The behavior observed by you seems by design since as the dialog gets opened the focus is set to the SearchBox (input text box) which opens the keyboard.

    We have acknowledged this issue to the development team with id 350733. In the meantime, you may avoid this issue by handling filterChanging event and remove focus from the Filter Dialog’s search box.

    Please refer to the following code snippet for the same:

    filter.filterChanging.addHandler(function(s,e){
         setTimeout(function(){
               document.querySelector("[wj-part='input']").blur();
         });
    });
    
    

    Hope it helps!

    ~Manish

Need extra support?

Upgrade your support plan and get personal unlimited phone support with our customer engagement team

Learn More

Forum Channels