jQuery UI Widgets Forums Grid Grid scrolling on mobile devices

This topic contains 5 replies, has 4 voices, and was last updated by  eklingen 6 years, 5 months ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
  • Grid scrolling on mobile devices #83002

    aliartos
    Participant

    Hi,
    from version 4.1 and on jqxGrid behaves differently on mobile devices. You cannot scroll up and down by touching the grid (by using/touching not editable columns)
    I hope this can make it clearer:
    version 4.0.0 example
    version 4.1.1 example

    Thank you very much in advance

    Grid scrolling on mobile devices #83011

    Peter Stoev
    Keymaster

    Hi aliartos,

    The reported behavior is already resolved.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Grid scrolling on mobile devices #84367

    lukas.rubes
    Participant

    Hello Peter,

    in what version has been this issue resolved? I am using version 4.1.2 and the issue still persist for me when scrolling vertically (when you load the example from alliartos in landscape mode). The grid does not fit the screen completely but it you cannot scroll the view down.

    The version 4.0.0 works in that case.

    Thank you very much in advance.

    Lukas Rubes

    Grid scrolling on mobile devices #84410

    lukas.rubes
    Participant

    Anyone facing the same issue? For me it makes the mobile view almost useless.

    Grid scrolling on mobile devices #84416

    Peter Stoev
    Keymaster

    There is no issue in the current version. You may see our examples on our website for reference.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

    Grid scrolling on mobile devices #90162

    eklingen
    Participant

    The following snippet of code released all touch events on mobile devices from jqxGrid allowing the user to scroll through page like usual. Fortunately we do not use the built-in scrollbars anywhere in our application, so this solution worked pretty well for us.

    $( '#tableid' ).jqxGrid( {
        scrollbarsize: 0,
        scrollmode: 'deferred',
        touchmode: false,
        ready: function() {            
            $.jqx.mobile.setTouchScroll( false, name );
        },
    
        ...
    
    } );
    
    • This reply was modified 6 years, 5 months ago by  eklingen.
    • This reply was modified 6 years, 5 months ago by  eklingen.
Viewing 6 posts - 1 through 6 (of 6 total)

You must be logged in to reply to this topic.