This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 7 years, 3 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • ScrollView – Disable Drag #96522

    SKIDD
    Participant

    Is it possible to disable the drag functionality for the scrollview? I’m using it it with forms, but don’t want to allow the user to slide it manually, it needs to changes pages through a different selection process. Is this possible?

    ScrollView – Disable Drag #96524

    Peter Stoev
    Keymaster

    Hi SKIDD,

    Built-in property, no, but you can do this as a solution:

    $('#view').jqxScrollView({
        width: 300,
        height: 250,
        buttonsOffset: [0, 0]
    });
    $('#view').off('mousemove');

    Best Regards,
    Peter Stoev

    jQWidgets Team
    https://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.